Tagged Questions
30
votes
3answers
4k views
Java 7 language features with Android
Just wondering if anyone has tried using new Java 7 language features with Android?
I know that Android reads the bytecode that Java spits out and turns it to dex. So I guess my question is can it ...
14
votes
7answers
8k views
How do I use JDK 7 on Mac OSX?
OK. This is a newbie question but I can't figure it out...
I would like to use the WatchService API as mentioned in this link:
...
11
votes
1answer
424 views
Any current workarounds to use Sonar for Java 7 code?
I try to use Sonar on a Java 7 project (which relies on new syntactic features) and the PMD part and the Checkstyle part fail to parse those files.
The Findbugs part fails to read Java 7 class files.
...
11
votes
2answers
2k views
JDK 7 class file backward compatibility with JDK 6
Which features of JDK 7 (excluding invokedynamic because it is not used by java) causing a new class file version which is not compliant with JDK 6. It seams that all features could be implemented by ...
10
votes
3answers
845 views
Java 7 (JDK 7) garbage collection and documentation
Java 7 has been out for a while now, but I cannot find any good resources on the configuration of the garbage collectors, specifically the new G1 collector.
My questions:
Is G1 the default collector ...
10
votes
3answers
396 views
JDK7: new features related to type variables?
I remember to have read about a new feature of JDK7 (now also supported by the Netbeans editor, yet only in current trunk builds).
This tiny feature wouldn't produce a warning anymore when instanceof ...
10
votes
2answers
885 views
Is MiGLayout going to be included in Java 7?
All I could find so far is this (open) Sun bug/RFE entry with 426 506 votes:
http://bugs.sun.com/view_bug.do?bug_id=6530906
It's in third place in the list of RFEs.
Tons of people have stated that ...
9
votes
2answers
508 views
Closures in Java - syntax differences between the three major proposals?
Three major proposals for adding closures to the Java language has been presented:
BGGA (Bracha Gafter Gosling Ahé) also known as "full closures", by Gilad Bracha, Neal Gafter, James Gosling and ...
7
votes
1answer
744 views
JDK7: Diamond inference syntax confusion
Try to compile the following code in JDK7:
import java.nio.file.*;
public final class _DiamondSyntaxErrors {
public interface InterfaceA<T> {
}
public abstract static class ...
7
votes
3answers
1k views
JSR305 vs. JSR308 (Java Type Anotations) - Which is going to be the standard?
There seem to be two different JSRs for annotations.
JSR-305: Annotations for Software Defect Detection (additional resource)
JSR-308: Annotations on Java Types (additional resource)
Both seem to ...
6
votes
2answers
149 views
JDK 1.7 Throwable `addSuppressed()` method
Well, I get through related questions, I read the source code of JDK 1.7, but I don't find the answer.
In this question I want to completely ignore fillInStackTrace.
As of JDK 1.4 initCause() method ...
6
votes
4answers
142 views
Can Java MethodHandles be considered the same as first class functions?
Java Method Class and Java 7's MethodHandle Class both refer to objects that are associated to methods, but still they are rarely used and when a function needs to be passed to another, it is ...
6
votes
1answer
95 views
java @SafeVarargs why do private methods need to be final
I have a private method in an inner class which is private I would like to use the SafeVarargs annotation. However, I am required to either have a static or final method. Why does a private method ...
6
votes
1answer
431 views
Why does this override of a generic method work with 1.6, but not 1.7?
Given the following class, which overrides the getListeners method from AbstractListModel:
import java.util.EventListener;
import javax.swing.AbstractListModel;
public class GenericBug extends ...
6
votes
2answers
273 views
Is JDK7 safe to use now?
I have recently learned that there are bugs in JDK7 for hotspot compiler optimization. See
this thread.
I don't quite understand the details of these bugs, but they seem to be related to loop ...
5
votes
1answer
255 views
Drag and drop differences between JDK1.6 and JDK1.7
Does anybody know about differences in the drag-and-drop behavior between JDK1.6 and JDK1.7 ? I encountered a difference (illustrated below) when drag-and-dropping an URL from a browser onto an ...
5
votes
2answers
293 views
How do I get unit test to run in java 7: java.lang.VerifyError: Expecting a stackmap frame at branch target
Hi I am running a maven test using maven 3.0.3 with hibernate 4.0.0 Final release and spring 3.1 on jdk7 update 2.
I get the following error.
Caused by: java.lang.VerifyError: Expecting a ...
5
votes
2answers
332 views
Is it possible to have a translucent windows in java 7 including a title bar?
Related to this question:
Is The Java Tutorials Translucent Window example giving trouble to those playing with jdk7?
with jdk1.6.0_26 I seem to be able to apply translucency to a JFrame, but not so ...
5
votes
1answer
769 views
GWT compatibility with JDK 7 new features
For example, JDK 7 is capable of switch(String) rather than just switch(Number/Enum).
If I wrote a GWT client that has switch(String) in its code, will there be any problems?
switch(String) is one ...
5
votes
1answer
418 views
Java 7 - Multiline strings
I've read that multiline string literals were proposed to be added in Java 7.
Although I can't find any documentation saying definitely that they have been. I'd like to know if they are, because ...
4
votes
2answers
281 views
HTTP Client with NIO2
Have someone familiar with HTTP Client that based on JDK7 and NIO2,
Implementation that use: AsynchronousSocketChannel
I am looking for implementation that based on NIO2 and can scale out unlimited, ...
4
votes
2answers
388 views
Is it “safe” to develop for the JDK7 platform?
We have a project which (assumed) would be finished in 1-2 years. By then, the JDK7 (and hopefully the Java7 JCP spec) should be ready.
But, I wonder, how probable is the "danger" that Oracle will ...
4
votes
3answers
311 views
java compiler's target version “jsr14” with JDK7/8
Can anybody tell me the jsr14 target option of javac will be still available with JDK7/8?
Say,
$ javac -source 1.5 -target jsr14 Hello.java
4
votes
2answers
253 views
Will Closures be supported in the final JDK 7 or not? [closed]
Possible Duplicate:
Closures in Java 7
There are so many articles and web pages about Closures in JDK 7. As i remember, first they said that Closures will be in JDK7, then they said that ...
3
votes
1answer
35 views
How to use -XX:+UnlockDiagnosticVMOptions -XX:CompileCommand=print option with JVM HotSpot
I 'm trying to use -XX:+UnlockDiagnosticVMOptions -XX:CompileCommand=print command lines as described in this post.
It seems thats it's available with open-jdk ...
3
votes
2answers
313 views
New features in JDK 1.6 and 1.7
I know JDK 1.5 pretty well. As we all know, besides new API (such as AtomicInteger, for example), there were major language changes such as providing support for generic, adding enum, prividing ...
3
votes
2answers
733 views
How to replace com.sun.image.codec.jpeg.JPEGImageEncoder in this code?
I have used com.sun.image.codec.jpeg.JPEGImageEncoder to handle JPEG images, like charts and others, in my webapp. Now, I am updating my machine to use JDK7, but this version deprecated this class. ...
3
votes
3answers
112 views
How can polymorphism be achieved with JDK7's invokedynamic
Assume that I am implementing a dynamically typed language on top the JVM 7, which supports the invokedynamic instruction to link methods at runtime.
The dynamically typed language has a function add ...
3
votes
3answers
162 views
Is there really `ResultSet.getObject(String, Class<T>) in JDK7?
I see quite a few changed interfaces in JDK7, e.g., the addition of ResultSet.getObject(String, Class<T>). I was greatly surprised by this incompatible change, especially because I've never seen ...
3
votes
1answer
609 views
How can I use Java 7 with Eclipse Indigo 3.7.1
From what I understand Eclipse Indigo 3.7.1 should now have support for Java 7.
I downloaded Eclipse 3.7.1. and JDK 1.7.0 and added JRE7 in the settings in Eclipse. Then I created a new project using ...
3
votes
1answer
745 views
IntelliJ, Maven and Java 7
So I opened an existing project in IntelliJ 10.5 as a maven project. I had first added the JDK 7 to my list of SDKs in order to try out the features. However for some reason my mvn commands would ...
3
votes
4answers
805 views
Is The Java Tutorials Translucent Window example giving trouble to those playing with jdk7?
Here's the example.
If you build and run TranslucentWindow in let's say, NetBeans IDE 7.0, which supports jdk7, you'll get the following exception:
Exception in thread "AWT-EventQueue-0" ...
3
votes
3answers
2k views
Java 7 switch statement with strings not working
According to The Java Tutorials, in Java SE 7 and later, you can use a String object in the switch statement's expression.
String s = ...
switch(s){
//do stuff
}
But is this true? I've ...
3
votes
1answer
135 views
Inferred generic types and the backtick in JDK7
I have been making my way through the Java Tutorial and have been reading about generic type inference in JDK7.
I came across the following syntax...
class MyClass<X> {
<T> MyClass(T ...
3
votes
1answer
174 views
How can I tell file deletion from directory deletion using JDK 7?
I am using JDK 7's WatchService to monitor directories.
The ENTRY_DELETE event tells me an entry has been deleted. I can get the name of that entry doing something similar to:
WatchEvent<Path> ...
3
votes
2answers
408 views
Java Closures - Current State
There have been many threads that correspond to this topic.
http://stackoverflow.com/questions/116865/whats-the-current-state-of-closures-in-java
...
2
votes
2answers
46 views
Difference between installing an JDK and using the dump
All,
I wanted to know what is the difference between installing an JDK using the installer provided by Oracle and using the JDK directory that is created after installation.
Say I installed JDK7u1 ...
2
votes
2answers
49 views
How to implement forkjoin for a series of action which is done in for loop for now
I have a list of senders for them I have to parallely send mails individually.Currently I am iterating over the list construct the body (as it is different for different people) and then sending them. ...
2
votes
1answer
485 views
Set ant bootclasspath: JDK 1.7 has a new javac warning for setting an older source without bootclasspath
How do I set the ant bootclasspath in conjunction with -source 1.5 -target 1.5?
How can this not be a hardcoded path to the 1.5 JDK? Can I set an environment variable to bootclasspath similar to how ...
2
votes
1answer
331 views
JSE strong cryptography for Java 7?
The preview release of Java 7 seems to be missing JCE package for unlimited cryptography strength. Has someone stumbled upon such?
2
votes
1answer
177 views
Problems calling a variadic Java function from Clojure
I'm having a play with the Java NIO.2 API from JDK 7.
In particular, I want to call the method: Paths#get(String first, String... more)
This is a static method which takes in at least one string, ...
2
votes
4answers
230 views
How to start playing with JDK7
Since i read that the early release of JDK7 was available for developers to play with i decided to have a look. About 5 minutes later after trying to play with some of the project coin features i ...
2
votes
2answers
192 views
Is there an available build demonstrating new JDK 7 features?
I wish to test the new features that will came with the next JDK like project coin, project lambda etc. but the last JDK 7 to download will not have any already implemented!
From which build can I ...
2
votes
3answers
440 views
2
votes
5answers
290 views
How do I rename (not move) a file in JDK7?
I'm a bit confused with all these new File I/O classes in JDK7.
Let's say, I have a Path and want to rename the file, it represents.
How do I specify the new name, when again a Path is expected?
...
1
vote
1answer
28 views
add glassfish javax.persistence to gradle project
i getting this error
% gradle build
[ant:javac] Hello.java:2: error: package javax.persistence does not exist
Hello.java:2: import javax.persistence.*;
what should i add to gradle.build to include
...
1
vote
2answers
63 views
HashMap and JDK 7
Simple experiment has shown that JDK7 compiled HashMap<Integer, Integer> uses many threads when performing simple serial insert-find benchmark:
Insert million numbers.
Search for hundreds of ...
1
vote
2answers
42 views
Which JRE version to use while making new Java Project in Eclipse and what are the drawbacks?
In Eclipse when i create new Java Project, i see options like:
Now i want to know, what is the safest option to use considering when i export jar file any user will be able to use it. If ...
1
vote
2answers
157 views
JDK 7 in Netbeans for OS X Lion
I am in the process of learning Java and the book I am using has code that requires Java 7. I downloaded the JDK7 developer preview from Google Code so I could add it as a Platform in Netbeans, when I ...
1
vote
4answers
86 views
Overriding single classes from rt.jar
I'm looking for a neat way to override a class from the bootstrap class path, rt.jar.
The reason is OpenJDK7 bug http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=7104625
The fix for this bug is a ...