12

I want to draw in full OSX Retina resolution in Java Swing application during debugging from IDE. How can I do this? When I run an app from an IDE, it looks blurry.

CrazyCoder
  • 389,263
  • 172
  • 990
  • 904
Konstantin Solomatov
  • 10,252
  • 8
  • 58
  • 88
  • i think he is basically just asking how to make *Retina* ready Java Applications – Isaac Gonzalez Aug 18 '12 at 09:52
  • No, it's about debugging retina enabled app in full retina resolution from IDE. If you create an app bundle, you can use Info.plist to specify retina key but when you run from IDE, I don't know how to do the same. – Konstantin Solomatov Aug 18 '12 at 09:56

3 Answers3

5

Fixed in jdk 7u40ea. Download from here https://jdk7.java.net/download.html

1

I had the same issue running Netbeans on a Retina MacBook Pro. Key is that JDK 7 does not support Retina and you have to downgrade to JDK 6.

Description and solution here: https://netbeans.org/bugzilla/show_bug.cgi?id=215141#c66

Matt
  • 1,148
  • 10
  • 15
  • 1
    A fix has now been created for Java 8 and should be officially implemented soon: http://mail.openjdk.java.net/pipermail/macosx-port-dev/2013-April/005491.html I'm not sure if there are plans to backport it to Java 7. – Thunderforge Apr 07 '13 at 22:41
0

If it is just about the IDE could you please let us know which IDE you are using.

For Eclipse https://bugs.eclipse.org/bugs/show_bug.cgi?id=382972

For IntelliJ IDEA http://youtrack.jetbrains.com/issue/IDEA-87500

Arun Manivannan
  • 4,213
  • 3
  • 29
  • 38