Tagged Questions

For issues relating to setting up or using the Java Development Kit (JDK), version 1.6.

learn more… | top users | synonyms

11
votes
1answer
214 views

How does JDK 6 regexp compare with org.apache.regexp?

I'm interested in benchmarks and functionality? Is there are any reason to use Jakarta regexp?
8
votes
3answers
2k views

TimeZone.setDefault changes in JDK6

I just noticed that JDK 6 has a different approach to setting a default TimeZone than JDK5. Previously the new default would be stored in a thread-local variable. With JDK6 (I just reviewed ...
7
votes
2answers
428 views

Closing a RandomAccessFile sometimes takes exactly 45 seconds

In my program, closing a java.util.RandomAccessFile sometimes takes exactly 45 seconds (well, almost exactly: between 44.998 and 45.003 seconds). The program creates and closes lots of small files. ...
7
votes
3answers
2k views

How to (re)attach JDK sources for Eclipse on Snow Leopard?

After updating to the latest (and now deprecated, sniff...) update of Apple's JDK, Eclipse does not show the source code for JDK classes anymore. It asks me to attach the source location file or ...
7
votes
2answers
372 views

Most concise way to convert a Set<String> to a List<String>

I am currently doing this: Set<String> listOfTopicAuthors = .... List<String> list = Arrays.asList( listOfTopicAuthors.toArray( new String[0] ) ); Can you beat this ?
7
votes
2answers
2k views

How to set classpath when I use javax.tools.JavaCompiler compile the source?

I use the class javax.tools.JavaCompiler (jdk6) to compile a source file, but the source file depends on some jar file. How to set the classpath of the javax.tools.JavaCompiler?
7
votes
2answers
2k views

Using Java 6, on linux how can I make sure to use an ipv4 socket?

I'm trying to write a quick little java application to read the contents of a pcap file (from Wireshark) and play the data back on the network on a linux box. The file will only contain UDP broadcast ...
6
votes
3answers
258 views

Configurable XML pretty printer for java

I need to format an xhtml file which has some elements included in a different namespace. I have searched a whole day for a really good mechanism for pretty printing an xml file in java. I have ...
6
votes
3answers
197 views

Affect the order of NetworkInterface.getNetworkInterfaces enumeration in Java 6 on Linux

What is the order in which NetworkInterface.getNetworkInterfaces() returns an enumeration of network interfaces? Is there a way to affect that on JVM level or on Linux OS level?
6
votes
3answers
1k views

@Override compile error, implementing an interface (eclipse jdk1.6.0_23 linux)

I am getting compile errors in eclipse when using the @Override annotation for a class that is implementing an interface. Compiler compliance level is set to Java 6.0. I am using the latest version ...
6
votes
9answers
2k views

How can you disable all sorting code in JTable in 1.6

I have a JTable extension that has been in use since Java 1.3/1.4 in the project that provided things like column reordering and sorting by clicking on the column. We are upgrading to Java 1.6, and ...
6
votes
4answers
828 views

Do generics in Java avoid all ClassCastExceptins?

Since generics are only checked during compile time with Java 5, can they avoid ClassCastExceptions in all situations?
5
votes
1answer
2k views

Difference in DocumentBuilder.parse when using JRE 1.5 and JDK 1.6

Recently at last we have switched our projects to Java 1.6. When executing the tests I found out that using 1.6 a SAXParseException is not thrown which has been thrown using 1.5. Below is my test ...
5
votes
4answers
477 views

Most useful or interesting new language features in Java 5 and 6?

I was looking through a code tutorial just now, and found something interesting -- the import static feature introduced in JDK 5: import static org.junit.Assert.assertEquals; public class ...
5
votes
1answer
125 views

VB support in Java 6?

I was checking Java language history in wikipedia, and this paragraph caught my attention: The current version, Java SE 6 (December 11, 2006) — Codename Mustang — is bundled with a database ...
5
votes
4answers
3k views

How to tell why a file deletion fails in Java?

File file = new File(path); if (!file.delete()) { throw new IOException( "Failed to delete the file because: " + getReasonForFileDeletionFailureInPlainEnglish(file)); } Is there ...
5
votes
3answers
2k views

Experience with JDK 1.6.x G1 (“Garbage First”)

I'd like to know what are the experiences with G1 garbage collector in newest JDK? I see NullPointerException thrown in my program, although code didn't change and behave correctly in earlier JDKs.
5
votes
4answers
9k views

Add warning for missing @Override annotation for interface implementation in Eclipse

In Eclipse 3.4.1 using JDK1.6.0_10 how can I activate a warning on a missing @Override annotation on a method that implements an interface method? In the Preferences window this option: Java > ...
4
votes
4answers
154 views

Why is HashMap containsKey slower than get in Sun JDK? (sun-jdk-1.6.0.17)

Why is calling containsKey on a HashMap slower then get? Test: http://ideone.com/QsWXF (>15% difference, run on sun-jdk-1.6.0.17)
4
votes
2answers
113 views

Where can I find the Java native method implementations? [closed]

Possible Duplicate: Where to find source code for java.lang native methods? Where can I find Java’s native method implementations of JDK 1.6 Windows platform?
4
votes
9answers
106 views

confusion about the results of java String

class Test{ public static void main(String s[]){ String s1="welcome",s2="come"; System.out.println(s1==("wel"+"come")); //prints : true ...
4
votes
3answers
943 views

OutOfMemory GC overhead limit exceeded to acquire lock on log4j Objects

Can anyone please help me to identify the exact are of problem. Is it either JVM, Log4j or something else in our application? We are running a multi-threaded application using JDK 1.6.0.24 on Solaris ...
4
votes
5answers
2k views

@override annotation in JDK 1.6

I'm using JDK1.6. When I implement an interface and in the implementing class, if I give @override before my function names, Eclipse throws an compilation error. i.e. below code is wrong according to ...
4
votes
5answers
2k views

HttpURLConnection implementation question

I have read that HttpURLConnection supports persistent connections, so that a connection can be reused for multiple requests. I tried it and the only way to send a second POST was by calling ...
4
votes
2answers
776 views

Can't authenticate with different NTLM credentials in one session with java.net.URLConnection

When I access a HTTP server using the standard Java API (java.net.URLConnection), the credentials are "cached" after the first successful authentication, and subsequent calls to ...
4
votes
4answers
4k views

Is there a Java utility which will convert a String path to use the correct File separator char?

I have developed a number of classes which manipulate files in Java. I am working on a Linux box, and have been blissfully typing new File("path/to/some/file");. When it came time to commit I realised ...
4
votes
5answers
537 views

Running Two Versions of Java JDK

I primarily use JDeveloper 10 with JDK 1.4.2 on Vista. I would like to install Eclipse and have it run the latest JDK 6. Is this possible without conflict? Ideally I would like to just use ...
4
votes
6answers
2k views

Can I add classes to sun's rt.jar file?

I downloaded the Javax.mail package. I have jdk1.6.0_11. Problem is...I cannot get javac or java to find those classes! I can get apps to compile using JCreator LE ( by adding the mail jar to its ...
3
votes
2answers
152 views

New features in JDK 1.6 and 1.7

I know JDK 1.5 pretty well. As we all now, besides new API (such as AtomicInteger, for example), there were major language changes such as providing support for generic, adding enum, prividing ...
3
votes
1answer
200 views

Any issues migrating from JDK6 to JDK7 with Spring & Tomcat?

I'd like to take advantage of some JDK7 features. What issues might I run into given that I use Apache Tomcat 7.0.x (latest) and Spring 3.1 (latest)?
3
votes
1answer
89 views

btrace with JDK5

Can we use bTrace with JDK5 or lesser versions? If not, what is that things which is provided in JDK6 that makes bTrace work? My understanding is that btrace working on Java Byte Code Instrumentation ...
3
votes
4answers
127 views

Where can I find JDK6 source repository?

On the JDK6 source page the repository link is broken, and the location that is described in readme doesn't exist. I know that there is also OpenJDK repository, but as I understand, it isn't the same. ...
3
votes
1answer
208 views

FileLock changes between java 5 and java 6

In Java 1.5, java.nio.channels.FileLock did not check to see files that were already locked. Referenced Here The snippet states: The java.nio.channels.FileLock class checks for files already ...
3
votes
1answer
258 views

what is the role of “vm thread” in JDK 1.6

We are seeing lot of activity of this thread in our customer's system and hence would like to know what might be happening. any links, info, tutorials ? P.S : this is happening on Solaris 10 with ...
3
votes
2answers
229 views

NPE in java.util.LinkedList addBefore method

Somehow, I'm getting a null pointer exception here with JDK 1.6.0_14: HttpSession session = request.getSession(true); LinkedList<MyObject> list = (LinkedList<MyObject>) ...
3
votes
3answers
172 views

Does Java 6 include a program that can run javax.script (Rhino JS) files?

I found that Java 6 includes Rhino JS (except for one or two minor pieces), as javax.script. Pretty cool! Does a Java 6 install (JRE or JDK, either) contain a binary that I can simply point to a .js ...
3
votes
3answers
1k views

Do i have to install jdk win64?

I have installed windows 7 x64, therefore i have a confusion whether i have to install JDK x64 or JDK x86? please help me, thank you
3
votes
3answers
547 views

Scripting java : import a class from an external file

I want to import a class that I already write in an external folder, for example : My class Example.java that is located in c:\class\Example.java to my script like using var importedClass = new ...
3
votes
1answer
338 views

Gotchas in JDK 6

Are there any gotchas in JDK 6 which did not exist in earlier versions? I am interested in finding out some surprising changes like the following one in the way Timestamp.valueOf() works. ...
3
votes
4answers
1k views

Java 6: Examples for implementing own scripting language using javax.script?

I really can't find good examples for implementing own scripting language using javax.script ... I need just something to start. Documentations Examples Tutorials Videos Presentations slides (PDF) ...
3
votes
3answers
3k views

How to get java 1.6 applet working on mac os x

anyone got java 1.6 applet working on mac os x ? check it on gemal.dk/browserspy/java.html I got Java using object and applet tag 1.5.0_16 (1.5.0_16-133) from Apple Inc. and you ? on windows and ...
2
votes
5answers
161 views

Why does the Java garbage collector kick in when there is plenty of available RAM?

C# dev here, forced to deal with Java... I am interfacing to a Java Web Service, which is quite memory and CPU heavy. It . Facts: Runs under Tomcat and it's Java 1.6.x It's all on Windows ...
2
votes
0answers
114 views

Bound values are not getting updated from editable datatable without setting ID in JDK1.5

Bound values are not getting updated from editable data table without setting ID in JDK 1.5. But the same does work without setting ID in JDK 1.6. Does anyone know why? Thanks Code, Bean part ...
2
votes
2answers
531 views

java.security.Keystore aliases on JDK 1.6 vs IBM 1.5

I've a problem with the enum return value of KeyStore.aliases(); FileInputStream is = new FileInputStream("/tmp/file.p12"); List<String> aliases = new ArrayList<String>(); KeyStore ...
2
votes
1answer
123 views

Maven creates class file 50.0, should be 49.0

This is my setup: JDK 1.5 and JDK 1.6 installed, JAVA_HOME points to JDK 1.6 pom.xml uses maven-compiler-plugin with <source>1.5</source> and <target>1.5</target> mvn ...
2
votes
3answers
2k views

Which JDK for Android Development on Ubuntu 10.04 64-bit?

Ubuntu 10.04 64-bit looks promising as a development environment for Android. I now have it up and running but I am stuck at the following decision point: Synaptic Package Manager has 'default-jdk' ...
2
votes
4answers
1k views

Java Garbage Collection Strategy

I'm looking for a technique to find out the Garbage Collection (GC) strategy (collector) the Java VM is using at a given point of time. (Later on, I'd like it to correctly reflect the strategy that I ...
2
votes
3answers
390 views

Unable to run JAR file on another PC. Possible issue with Environment Variables?

I've built a JAR file and it executes fine on my PC (XP) which has Eclipse installed. It also works on another PC, which also has Eclipse. I've tried running it on another PC(XP) that does not have ...
2
votes
1answer
97 views

Toolkit returns references to proprietary Sun APIs?

I just upgraded our project to JDK 1.6, and on compilation, I have a test class that implements java.awt.Toolkit and implements the methods to do nothing special (other than capture the call to the ...
2
votes
1answer
131 views

Import a class in Scripting java (javax.script)

I want to import a class that I made in my project, into my script I did this but it doesn't work: function doFunction(){ //Objectif Mensuel importPackage(java.lang); ...

1 2 3 4