active questions tagged java7 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T21:47:40Zhttp://stackoverflow.com/feeds/tag/java7http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/233579/closures-in-java-79Closures in Java 7Roger2008-10-24T13:44:24Z2009-11-19T21:00:57Z
<p>I have heard that closures could be introduced in the next Java standard that is scheduled to be released somewhere around next summer. </p>
<p>What would this syntax look like?</p>
<p>I read somewhere that introducing closures in java is a bigger change than generic was in java 5. Is this true? pros and cons?</p>
<p>(By now we definitely know that closures not will be included in the next Java release)</p>
<p>OR </p>
<p><strong>edit: <a href="http://puredanger.com/tech/2009/11/18/closures-after-all/" rel="nofollow">http://puredanger.com/tech/2009/11/18/closures-after-all/</a> :D</strong></p>
http://stackoverflow.com/questions/1476757/jsr305-vs-jsr308-java-type-anotations-which-is-going-to-be-the-standard1JSR305 vs. JSR308 (Java Type Anotations) - Which is going to be the standard?ivan_ivanovich_ivanoff2009-09-25T11:23:04Z2009-11-18T15:25:47Z
<p>Hello!</p>
<p>There seem to be two different JSRs for annotations. </p>
<p><a href="http://jcp.org/en/jsr/detail?id=305" rel="nofollow"><strong>JSR-305: Annotations for Software Defect Detection</strong></a> <a href="http://code.google.com/p/jsr-305/" rel="nofollow"><em>(additional resource)</em></a><br />
<a href="http://jcp.org/en/jsr/detail?id=308" rel="nofollow"><strong>JSR-308: Annotations on Java Types</strong></a> <a href="http://types.cs.washington.edu/jsr308/" rel="nofollow"><em>(additional resource)</em></a></p>
<p>Both seem to be oriented towards static code analysis.</p>
<p>Do you know:</p>
<ul>
<li>which of the both is going to be either in Java SE 7 or Java EE 6?</li>
<li>how "stable" is each JSR?</li>
<li>does the one supersedes (or obsoletes) the other?</li>
</ul>
http://stackoverflow.com/questions/753956/whats-the-upcoming-java-concurrency-library-jsr166y-jsr166z5What's the upcoming Java concurrency library: jsr166y? jsr166z?ivan_ivanovich_ivanoff2009-04-15T22:16:05Z2009-11-09T14:33:00Z
<p>Hello!</p>
<p>I wanted to play around with the upcoming concurrency library which
is going to be included in<br />
Java 7 according to <a href="http://tech.puredanger.com/java7/#jsr166" rel="nofollow"><strong>this website</strong></a>.</p>
<p>It seems to be named <strong>JSR166</strong>.</p>
<p>In most places its reference implementation is referred as <strong>jsr166y</strong>,
while few resources call it <strong>jsr166z</strong>.</p>
<p>I discovered two totally <strong>different</strong> javadocs for each reference implementation.</p>
<ul>
<li>Docs for <a href="http://gee.cs.oswego.edu/dl/jsr166/dist/jsr166ydocs/" rel="nofollow"><strong>jsr166y</strong></a></li>
<li>Docs for <a href="http://www.javac.info/jsr166z/" rel="nofollow"><strong>jsr166z</strong></a></li>
</ul>
<p>Now, which implementation is going to be included in Java 7?</p>
<p><strong>EDIT</strong><br />
While people who answered suggest that jsr166y is the thing for Java 7,
I discovered <a href="http://developers.sun.com/learning/javaoneonline/j1sessn.jsp?sessn=TS-5515&yr=2008&track=javase" rel="nofollow"><strong>this</strong> document (TS-5515)</a> from JavaOne.
This document refers to Java 7 but mentions LinkedAsyncAction
which is only present in jsr166z javadocs. (Confusion...)</p>
http://stackoverflow.com/questions/1571897/java7-swing-application-framework-support1Java7 swing application framework supportMikhail.Mamaev2009-10-15T11:52:16Z2009-10-15T16:09:14Z
<p>The future of the Swing application framework on the Java 7 platform is undefined.
<a href="http://weblogs.java.net/blog/archive/2009/08/19/saf-and-jdk7" rel="nofollow">http://weblogs.java.net/blog/archive/2009/08/19/saf-and-jdk7</a></p>
<p>Is it safely to use it now?</p>
http://stackoverflow.com/questions/1082555/best-java-7-features6Best Java 7 featuresripper2342009-07-04T16:47:09Z2009-09-29T13:15:27Z
<p>What are some features that you like in the next version of Java?</p>
http://stackoverflow.com/questions/1471805/is-it-possible-to-change-the-base-millisecond-refrence-time-1970-to-2008-in-java2Is it possible to change the base millisecond refrence time 1970 to 2008 in java (like JSR-310)Daxon2009-09-24T13:47:44Z2009-09-24T14:43:18Z
<p>I want to be able to change the base millisecond reference from 1970 to 2008 in java so
that I can save space in the database and unique Ids.</p>
<p>Preferably with Joda-Time.</p>
<p><strike>The upcoming jsr-310 in the supposed java 7 release implements it.</p>
<p>In the <em>The Discrete Timeline</em> section of this link it states that the counting of milliseconds has changed from 1970 to 2008</p>
<p><a href="http://today.java.net/pub/a/today/2008/09/18/jsr-310-new-java-date-time-api.html" rel="nofollow">http://today.java.net/pub/a/today/2008/09/18/jsr-310-new-java-date-time-api.html</a></strike></p>
<p><hr /></p>
<p>The only other option I can see is to mathematically implement it every time
I need to look up a record.</p>
<p>E.g. </p>
<pre><code>DateTime dt = new DateTime();
long now = dt.getMillis();
DateTime dt2 = new DateTime(2008, 1, 1, 0, 0, 0, 0);
long then = dt2.getMillis();
long smallerDate = now - then;
</code></pre>
<p>Smaller date will be stored in the DB</p>
<p>-- <strong>Edit</strong> --</p>
<p>So I miss read the JSR-310, and it's not possible</p>
<p>There are better ways to save space and then a headache of
processing thousands of request to calculate longs,</p>
<p>I wanted to record longs as dates because I'll never know where I will move
the DB to, MySQL => Oracle</p>
<p>So I didn't want time stamps, I just wanted BigInts.</p>
http://stackoverflow.com/questions/1342294/jdk-7-swingworker-deadlocks0JDK-7 SwingWorker deadlocks?kd3042009-08-27T16:42:50Z2009-08-27T20:15:59Z
<p>I have a small image processing application which does multiple things at once using SwingWorker. However, if I run the following code (oversimplified excerpt), it just hangs on JDK 7 b70 (windows) but works in 6u16. It starts a new worker within another worker and waits for its result (the real app runs multiple sub-workers and waits for all this way). Did I use some wrong patterns here (as mostly there is 3-5 workers in the swingworker-pool, which has limit of 10 I think)?</p>
<pre><code>import javax.swing.SwingUtilities;
import javax.swing.SwingWorker;
public class Swing {
static SwingWorker<String, Void> getWorker2() {
return new SwingWorker<String, Void>() {
@Override
protected String doInBackground() throws Exception {
return "Hello World";
}
};
}
static void runWorker() {
SwingWorker<String, Void> worker
= new SwingWorker<String, Void>() {
@Override
protected String doInBackground() throws Exception {
SwingWorker<String, Void> sw2 = getWorker2();
sw2.execute();
return sw2.get();
}
};
worker.execute();
try {
System.out.println(worker.get());
} catch (Exception e) {
e.printStackTrace();
}
}
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
runWorker();
}
});
}
}
</code></pre>
http://stackoverflow.com/questions/1287297/java-7-date-time-api4Java 7 Date/Time APIskaffman2009-08-17T10:47:48Z2009-08-17T11:35:52Z
<p>I notice that a snapshot of the Java 7 API <a href="http://java.sun.com/javase/7/docs/api/" rel="nofollow">has been up</a> on java.sun.com for some time, but I only just had a look through it just now, looking specifically for the promised JodaTime-inspired Date/Time API. Alas, I can find no mention of it in the published docs.</p>
<p>Is this because it simply hasn't been done yet, and this published API is an early, incomplete snapshot, or because the idea has been quietly dropped?</p>
http://stackoverflow.com/questions/1011916/chained-invocation-in-java-74Chained invocation in Java 7?MasterPeter2009-06-18T10:14:05Z2009-07-26T10:32:17Z
<p>I was just reading a <a href="http://puredanger.com/techfiles/090204/Java7Preview.pdf" rel="nofollow">Java7 preview presentation (pdf)</a> and there was a slide on <em>Chained Invocation</em>. Here is the example used in the slide:</p>
<pre><code>// Construction with setters
DrinkBuilder margarita = new DrinkBuilder();
margarita.add(“tequila”);
margarita.add(“orange liqueur”);
margarita.add(“lime juice”);
margarita.withRocks();
margarita.withSalt();
Drink drink = margarita.drink();
// Construction with chained invocation
Drink margarita = new DrinkBuilder()
.add(“tequila”)
.add(“orange liqueur”)
.add(“lime juice”)
.withRocks()
.withSalt()
.drink();
</code></pre>
<p>And I have mixed feelings about this. One shouldn't chain too many method invocations into one statement. OTOH, writing <strong>margarita.</strong>this() and <strong>margarita.</strong>that() isn't too convenient either.</p>
<p>Now, I am coming to Java from Delphi world. And in Delphi there is the <strong>with</strong> language construct. This is cherished by a few and loathed by many (or is it the other way around?). I find <strong>with</strong> to be more elegant than the idea of chained invocation (which I believe works on the basis of <code>void</code> method returning reference to object on which it has been invoked - and this is the part I don't like, as void should return <em>nothing</em>).</p>
<p>I would appreciate the <strong>with</strong> language feature being adopted by Java, so the example code could be written like so:</p>
<pre><code>Drink margarita = null;
with (new DrinkBuilder()) {
add(“tequila”);
add(“orange liqueur”);
add(“lime juice”);
withRocks();
withSalt();
margarita = drink();
}
</code></pre>
<p>Am I the only one who would prefer this solution to the chained invocation? Anyone else feels that <strong>with</strong> could be a useful extension to Java language? (Reminds me of someone's question about the need of "Java++"...)</p>
http://stackoverflow.com/questions/951829/what-language-feature-would-you-most-like-to-see-in-the-next-release-of-java0What language feature would you most like to see in the next release of Java? [closed]mR_fr0g2009-06-04T17:00:55Z2009-06-04T18:13:46Z
<blockquote>
<p><strong>Possible Duplicates:</strong><br />
<a href="http://stackoverflow.com/questions/170194/what-features-would-you-like-to-see-in-java">What features would you like to see in Java?</a><br />
<a href="http://stackoverflow.com/questions/460938/what-are-you-looking-forward-to-in-java-7">What are you looking forward to in Java 7?</a> </p>
</blockquote>
<p>Iwas just wondering if anyone had any opinions on this. Perhaps its a feature of java 7 that you a particularly excited about?</p>
http://stackoverflow.com/questions/741082/what-differences-will-java-7-have-from-java-6-and-what-will-it-mean-to-us-java18What differences will Java 7 have from Java 6, and what will it mean to us Java programmers?William2009-04-12T00:52:49Z2009-06-04T17:39:07Z
<p>What differences will Java 7 have from Java 6, and what will it mean to us Java programmers?</p>
<p>I'm very curious about what the future of java holds, and I've been able to find some info on Java 7, but I want to know what all that info really means. Like what will a modular JDK do for programs?</p>
<p><strong>See also</strong>: <a href="http://stackoverflow.com/questions/460938">What are you looking forward to in Java 7?</a></p>
http://stackoverflow.com/questions/710266/why-will-there-be-no-native-properties-in-java-72Why will there be no native properties in Java 7?bwalliser2009-04-02T15:37:25Z2009-04-02T21:28:12Z
<p>Is there any rational reason, why <a href="http://tech.puredanger.com/java7#property" rel="nofollow">native properties</a> will not be part of Java 7?</p>
http://stackoverflow.com/questions/604188/whats-the-motivation-for-properties2What's the motivation for properties?0yb4bs432009-03-02T21:59:00Z2009-03-05T06:12:22Z
<p>I'm a bit confused as to why languages have these. I'm a Java programmer and at the start of my career so Java is the only language I've written in since I started to actually, you know, get it.</p>
<p>So in Java of course we don't have properties and we write getThis() and setThat(...) methods.</p>
<p>What would we gain by having properties?</p>
<p>Thanks.</p>
<p><strong>EDIT:</strong> another query: what naming conventions arise in languages with properties? </p>
http://stackoverflow.com/questions/558839/arrays-as-proper-objects0Arrays as proper objects [closed]Peter Lawrey2009-02-17T21:38:32Z2009-02-17T22:18:41Z
<p>I have written a page here on using arrays as proper objects with their own methods instead of relying on helper classes like Arrays, Arrays and ArrayUtils. </p>
<pre><code>ints.sort(); // instead of Arrays.sort(ints);
// instead of int[] onemore = ArrayUtils.add(ints, 8);
int[] onemore = ints.add(8);
</code></pre>
<p>I am sure I am not the first with this idea but I have had trouble searching for others who have written about this before.</p>
<p>Can anyone help me with some references on this topic?</p>
<p>Can you add comments if you have a reference on why this is a bad idea or a good idea if you have one?</p>
<p><strong>Link deleted. Adding main points</strong></p>
<p>This follows from the idea of Project Coin</p>
<pre><code>OVERVIEW
Provide a two sentence or shorter description of these five aspects of the feature:
FEATURE SUMMARY: Should be suitable as a summary in a language tutorial.
</code></pre>
<p>Treat array as objects with their own methods rather than values to be passed to helper methods. This leads to more natural coding and gives the methods more immediacy. e.g. through code completion.</p>
<pre><code>MAJOR ADVANTAGE: What makes the proposal a favorable change?
</code></pre>
<p>It bring OO programming to arrays , supporting methods already available and written.</p>
<pre><code>MAJOR BENEFIT: Why is the platform better if the proposal is adopted?
</code></pre>
<p>Object Orientated consistency for arrays.</p>
<pre><code>MAJOR DISADVANTAGE: There is always a cost.
</code></pre>
<p>Someone has to write it and test it.</p>
<pre><code>ALTERNATIVES: Can the benefits and advantages be had some way without a language change?
</code></pre>
<p>Call helper methods.</p>
<pre><code>EXAMPLES
Show us the code!
SIMPLE EXAMPLE: Show the simplest possible program utilizing the new feature.
int[] ints = {5,4,3,2,1};
ints.sort(); // instead of Arrays.sort(ints);
int pos = ints.indexOf(5); // instead of Arrays.asList(ints).indexOf(5); or ArraysUtils.indexOf(ints, 5);
ints.reverse(); // instead of Arrays.reverse(ints);
Array array = ints; // cast to super class.
int length = array.getLength(); // instead of Array.getLength(array);
Object n = array.get(3); // instead of Array.get(array, 3);
array.set(3, 7); // instead of Array.
Object obj = array;
System.out.println(obj); // prints [5,4,7,2,1] instead of having to if (obj instanceof int[]) System.out.println(Array.toString((int[]) obj)); else if (....)
</code></pre>
<blockquote>
<p>ADVANCED EXAMPLE: Show advanced usage(s) of the feature.</p>
</blockquote>
<pre><code>int[] ints = {5,4,3,2,1};
int[] ints2 = ints.copyOf(2);
int[] ints3 = ints.subArray(2,4);
ints.sort(myComparator);
List<Integer> list = ints.asList();
Set<Integer> set = ints.asSet();
long total = ints.sum();
double avg = int.average();
int max = ints.max();
int max2 = ints.max(myComparator);
http://commons.apache.org/lang/api/org/apache/commons/lang/ArrayUtils.html
int[] onemore = ints.add(8); // instead of ArrayUtils.add(ints, 8);
int[] moreInts = ints.addAll(ints2); // instead of ArraysUtils.addAll(ints, ints2);
int[] oneless = int.remove(3); // instead of ArrayUtils.remove(ints, 3);
Integer[] integers = int.toObject();
int[] intsAgain = integers.toPrimitive();
DETAILS
SPECIFICATION: Describe how the proposal affects the grammar, type system, and meaning of expressions and statements in the Java Programming Language as well as any other known impacts.
</code></pre>
<p>A class such as java.lang.Array would need to be added as the parent of all arrays. Subclasses for specific int[], boolean[] might also be needed.
The grammar shouldn't be dramatically different.</p>
<pre><code>COMPILATION: How would the feature be compiled to class files? Show how the simple and advanced examples would be compiled. Compilation can be expressed as at least one of a desugaring to existing source constructs and a translation down to bytecode. If a new bytecode is used or the semantics of an existing bytecode are changed, describe those changes, including how they impact verification. Also discuss any new class file attributes that are introduced. Note that there are many downstream tools that consume class files and that they may to be updated to support the proposal!
</code></pre>
<p>In the provides a new parent for arrays could be used, the compilation would be the same as it is now. However, it is the JVM which would need to accept that an array has a different super class.</p>
<pre><code>TESTING: How can the feature be tested?
</code></pre>
<p>Check the new methods do the same things as the helper methods. (Should be simple if indeed they just call the same helper methods)</p>
<pre><code>LIBRARY SUPPORT: Are any supporting libraries needed for the feature?
</code></pre>
<p>This should be added to the rt.jar</p>
<pre><code>REFLECTIVE APIS: Do any of the various and sundry reflection APIs need to be updated? This list of reflective APIs includes but is not limited to core reflection (java.lang.Class and java.lang.reflect.*), javax.lang.model.*, the doclet API, and JPDA.
</code></pre>
<p>The super class for an array would need to return java.lang.Array or the like instead of java.lang.Object. However, again this may be a change for the JVM rather than the rt.jar code.</p>
<pre><code>OTHER CHANGES: Do any other parts of the platform need be updated too? Possibilities include but are not limited to JNI, serialization, and output of the javadoc tool.
</code></pre>
<p>The change should be reflected in the javadoc.</p>
<pre><code>MIGRATION: Sketch how a code base could be converted, manually or automatically, to use the new feature.
</code></pre>
<p>Replace calls to Arrays.xxx(array, args) to array.xxx(args);</p>
<pre><code>COMPATIBILITY
BREAKING CHANGES: Are any previously valid programs now invalid? If so, list one.
</code></pre>
<p>Calls to hashCode() and equals() would be changed if every method were taken. This may be unacceptable in which case these methods could be left as they are rather than call Arrays.hashCode() or Arrays.equals();</p>
<pre><code>EXISTING PROGRAMS: How do source and class files of earlier platform versions interact with the feature? Can any new overloadings occur? Can any new overriding occur?
</code></pre>
<p>No.</p>
<pre><code>REFERENCES
EXISTING BUGS: Please include a list of any existing Sun bug ids related to this proposal.
</code></pre>
<p><em>This is what I am looking for help on, bug reports or other references</em></p>
http://stackoverflow.com/questions/460938/what-are-you-looking-forward-to-in-java-75What are you looking forward to in Java 7?Yuval A2009-01-20T11:39:32Z2009-01-20T20:16:53Z
<p>Java SE 7 is the next major release for Java SE.</p>
<p>The details are sketchy, same goes for timelines, although <a href="http://tech.puredanger.com/java7/" rel="nofollow">Alex Miller</a> has a nice round-up, and generally a good place to start.</p>
<p>Also, <a href="http://hamletdarcy.blogspot.com/2008/12/java-7-update-from-mark-reinhold-at.html" rel="nofollow">here</a> is a summary of Java 7 update by Mark Reinhold, cheif engineer for Java SE.</p>
<p>So, what major features scheduled for release are you looking forward to?</p>
http://stackoverflow.com/questions/214289/what-new-features-in-java-7-do-you-find-most-useful5What new features in java 7 do you find most useful?Oscar Reyes2008-10-18T00:45:24Z2009-01-20T04:01:56Z
<p>From this thread <a href="http://stackoverflow.com/questions/213958/new-features-in-java-7">New features in java 7</a> I found the new features in java from <a href="http://tech.puredanger.com/java7" rel="nofollow">Alex Miller list</a></p>
<p>Which ones do you find most useful and why?</p>
<p>Which ones will be counterproducent?</p>
<p>NOTE this list is not final and not all of them will make it through.</p>
http://stackoverflow.com/questions/6753/any-icedtea-war-stories2Any IcedTea war stories?Chris Jester-Young2008-08-09T12:57:29Z2008-10-18T06:49:23Z
<p>Okay, my first serious question. :-D</p>
<p>I'm playing around with <a href="http://openjdk.java.net/" rel="nofollow">OpenJDK</a> (7, not 6), and am about to start trying to build <a href="http://icedtea.classpath.org/" rel="nofollow">IcedTea</a> on my Ubuntu system. I'm keen to hear from those who have played with IcedTea and have stories (successes, pitfalls, etc.) to tell. All stories welcome, whatever distribution you use.</p>
<p>Chances are, I'll very soon have my own stories to add to the list…. :-)</p>
<p>ETA: I now have FrankenIcedTea v1 working. (It's just IcedTea 7 + <a href="http://openjdk.java.net/projects/nio/" rel="nofollow">NIO2</a>.) Once I have a blog set up, I can blog about the procedures required, for anyone else who's interested in pursuing this. :-)</p>
http://stackoverflow.com/questions/213958/new-features-in-java-76New features in java 7Serik2008-10-17T21:50:55Z2008-10-17T22:04:41Z
<p>What new features in java 7 is going to be implemented?
And what are they doing now?</p>