• 0

why is java so unresponsive in windows


Question

22 answers to this question

Recommended Posts

  • 0
Is it slower than on other OSes? I've tried Java in Windows and Linux, and some seem faster in Windows, some seem faster in Linux, but in both Java programs are inherently slower than other programing languages.

Untrue. You need to stay up to date.

OS News has a benchmark that shows exactly the opposite of your claims.

Java is not slow. Swing (the main choice of Java GUI) *IS* slow, but even that is mostly the fault of those using it.

  • 0
Untrue. You need to stay up to date.

OS News has a benchmark that shows exactly the opposite of your claims.

Java is not slow. Swing (the main choice of Java GUI) *IS* slow, but even that is mostly the fault of those using it.

It doesn't show the exact opposite, it just shows Java isn't as bad as it used to be. It's still not the fastest language to use.

  • 0
It doesn't show the exact opposite, it just shows Java isn't as bad as it used to be. It's still not the fastest language to use.

true, the fastest language is assembly, but how many of us want to write everything in assembly? ;)

java is slow because it runs through a VM. if the VM doesn't handle the code efficiently, then it will result in wasted resources and "slow" applications. try updating your VM (Y)

  • 0

java may seem slow because its a 4GL language (4th generation language) the higher you get up in generations it seems the slower they get because of how far they are becomming seperated from machine code... Java has garbage collectors that can slow down performance and runs on a VM that also causes performance slow downs, VMs are kinda a link between java language and the machine code it needs to run it...

  • 0
java may seem slow because its a 4GL language (4th generation language) the higher you get up in generations it seems the slower they get because of how far they are becomming seperated from machine code... Java has garbage collectors that can slow down performance and runs on a VM that also causes performance slow downs, VMs are kinda a link between java language and the machine code it needs to run it...

.net languages are 4 gl languages (as you told me c# was in some news article once ;)) and they don't slow down like java... i suppose this is because .net languages are not run in a VM, but are compiled at runtime.

for an example of this, see the quake II .net project. written in managed c++, it quake II .net runs at the same speed as the original game.

http://www.vertigosoftware.com/Quake2.htm

  • 0
Untrue. You need to stay up to date.

OS News has a benchmark that shows exactly the opposite of your claims.

Java is not slow. Swing (the main choice of Java GUI) *IS* slow, but even that is mostly the fault of those using it.

I'll repeat what I said here: https://www.neowin.net/forum/index.php?act=...dpost&p=1690558

Higher numbers are worse: http://img.osnews.com/img/5602/results.jpg

That graph is the number of seconds it took to complete the test. Java is the slowest :s

Did you even read the article?

  • 0

ummm.... Yes, overall java is the slowest among the ones mentioned in that graph. But did you pay attention to the individual tests? The slowest thing about the java was the trig. What would the numbers look like if we removed the trig?

Java would come in second, by a hair.

Here are the numbers with trig removed. I hope i didn't make a math mistake.

Visual c++.net 45.3

visual c#.net 61.2

c gcc 3.3.1 58.1

visual basic .net 81.9

visual j#.net 86.1

java 1.3.1 75.4

java 1.4.2 46.1

I'm not saying java is the best. But you can't look at just the overall number and say it's the slowest.

  • 0
I'll repeat what I said here: https://www.neowin.net/forum/index.php?act=...dpost&p=1690558

Higher numbers are worse: http://img.osnews.com/img/5602/results.jpg

That graph is the number of seconds it took to complete the test. Java is the slowest :s

Did you even read the article?

Seems faster in most things except trig really.

  • 0
.net languages are 4 gl languages (as you told me c# was in some news article once ;)) and they don't slow down like java... i suppose this is because .net languages are not run in a VM, but are compiled at runtime.

for an example of this, see the quake II .net project. written in managed c++, it quake II .net runs at the same speed as the original game.

http://www.vertigosoftware.com/Quake2.htm

yep, the VM and how they are compiled have a lot to do with it... .NET for example uses a runtime and compiles, java on the other hand uses a VM which converts code into a version it can run... kinda like the old Visual Basic PCODE compiler... vb use to be really slow for a lot of things... now that .NET came it is handled diffrently

it also has a lot to do with how the compiler that makes the executable does in terms of makeing a compiled file, some are not as optimized as they could be

Edited by bluebsh
  • 0
ummm.... Yes, overall java is the slowest among the ones mentioned in that graph. But did you pay attention to the individual tests? The slowest thing about the java was the trig. What would the numbers look like if we removed the trig?

Unfortunately, without the trig, a programming language would be pretty useless ;)

  • 0
Unfortunately, without the trig, a programming language would be pretty useless ;)

hehe, i know :D , i was just pointing out that the test was showing that java really isn't that bad. In fact it suprised me. I would have thought it would have been much slower on most, if not all of the tests.

  • 0
I'll repeat what I said here: https://www.neowin.net/forum/index.php?act=...dpost&p=1690558

Higher numbers are worse: http://img.osnews.com/img/5602/results.jpg

That graph is the number of seconds it took to complete the test. Java is the slowest :s

Did you even read the article?

Did YOU read the article? Java was second only to Visual C++. The ONLY area that it showed a significant performance problem was in trig functions. There has been some subsequent investigation into the huge performance difference in trig functions and the results are (1) Excessive synchronisation, (2) Poor implementation of some core methods. The problem has been reported to the Java Bug Parade and a fix will be forthcoming.

Stop and use the grey thing between your ears next time.

  • 0
It doesn't show the exact opposite, it just shows Java isn't as bad as it used to be. It's still not the fastest language to use.

Wrong! The benchmark DOES show the exact opposite of the claim that Java is slow... in fact, only Visual C++ is faster and by an insignificant amount.

  • 0
Did YOU read the article? Java was second only to Visual C++. The ONLY area that it showed a significant performance problem was in trig functions. There has been some subsequent investigation into the huge performance difference in trig functions and the results are (1) Excessive synchronisation, (2) Poor implementation of some core methods. The problem has been reported to the Java Bug Parade and a fix will be forthcoming.

Stop and use the grey thing between your ears next time.

my personal fav is how Managed C++.NET is 1st over the GCC compiler... hehe

  • 0
Wrong! The benchmark DOES show the exact opposite of the claim that Java is slow... in fact, only Visual C++ is faster and by an insignificant amount.?

The "exact" opposite would have been Java being the fastest, which it's not.

So the exact opposite of being slow, is being the fastest?

His exact words are saying that the "claim" is that java is slow, not that it is the slowest. The opposite of slowest, would be fastest, but the opposite of slow, is fast.

Oh Sn1p3t, try eclipse, i use it and it's great.

edit: here's the URL for eclipse

http://www.eclipse.org

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • Because of the EU (a good thing) newer android devices been getting 5 years worth of security patches. Except some Motorola which found the loop hole, and offer ZERO updates. In addition, Google for years have been making where it can patch some stuff by updating the core Google Play Store itself.  As echoed earlier,  you take the security risk in to your own hand beyond supported.
    • Win11Debloat 06.11.2026 by Razvan Serea Win11Debloat is a lightweight, easy to use PowerShell script that allows you to quickly declutter and customize your Windows experience. It can remove pre-installed bloatware apps, disable telemetry, remove intrusive interface elements and much more. The script also includes many features that system administrators and power users will enjoy. Such as a powerful command-line interface, support for Windows Audit mode and the option to make changes to other Windows users. All changes made by Win11Debloat can be easily reversed, and most removed apps can be restored via the Microsoft Store. A full guide on how to undo the changes is available here. Win11Debloat features: Below is an overview of the key features and functionality offered by Win11Debloat. Please refer to the wiki for more information about the default settings preset. Remove a wide variety of preinstalled apps. Click here for more info. Disable telemetry, diagnostic data, activity history, app-launch tracking & targeted ads. Disable tips, tricks, suggestions & ads across Windows. Disable Windows location services & app location access. Disable Find My Device location tracking. Disable 'Windows Spotlight' and tips & tricks on the lock screen. Disable 'Windows Spotlight' desktop background option. Disable ads, suggestions and the MSN news feed in Microsoft Edge. Hide Microsoft 365 ads on the Settings 'Home' page, or hide the 'Home' page entirely. Disable & remove Microsoft Copilot. Disable Windows Recall. Disable Click to Do, AI text & image analysis tool. Prevent AI service (WSAIFabricSvc) from starting automatically. Disable AI Features in Edge. Disable AI Features in Paint. Disable AI Features in Notepad. Disable the Drag Tray for sharing & moving files. Restore the old Windows 10 style context menu. Turn off Enhance Pointer Precision, also known as mouse acceleration. Disable the Sticky Keys keyboard shortcut. Disable Storage Sense automatic disk cleanup. Disable fast start-up to ensure a full shutdown. ...and more. Once you’ve downloaded the Win11Debloat file (Get.ps1), just follow these quick steps: Locate the Get.ps1 script file. Right-click the file and select Run with PowerShell from the context menu. If prompted by User Account Control (UAC), select Yes to grant the script the necessary administrative permissions. Win11Debloat 06.11.2026 fixes: Fix lock screen spotlight option being disabled when disabling the start recommended section by @Raphire in #619 Fix log message formatting by @Raphire Note The -RemoveCommApps and -RemoveW11Outlook command-line parameters for uninstalling a few specific apps have been removed with this release. If you previously relied on these parameters, please see this wiki page for alternative methods of removing these apps. Download: Win11Debloat 06.11.2026 | Open Source View: Win11Debloat Home Page | Screenshots 1| 2 Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • Yes for me, I installed 'old calculator' (Windows 7 calculator) in its place since it is more useful to me. I think paint is the only one I left installed
  • Recent Achievements

    • Rookie
      restore went up a rank
      Rookie
    • Very Popular
      AndrewSteel earned a badge
      Very Popular
    • Veteran
      Taliseian went up a rank
      Veteran
    • One Month Later
      Clizby earned a badge
      One Month Later
    • One Month Later
      Timaximus earned a badge
      One Month Later
  • Popular Contributors

    1. 1
      +primortal
      511
    2. 2
      +Edouard
      162
    3. 3
      PsYcHoKiLLa
      154
    4. 4
      ATLien_0
      82
    5. 5
      Steven P.
      79
  • Tell a friend

    Love Neowin? Tell a friend!