Java SE version 7 was released in 2011. The new features in comparison to the version 6 include dynamic language support, compressed pointers, small language extensions, elliptic curve cryptography, new network protocols and various system library extensions.
0
votes
0answers
4 views
Oracle Database performance issue on JBoss7
Guys i am actively working on migrating an application running on JBoss 5 to JBoss 7.
After migration, I have noticed that the database calls took a huge performance hit.
I was using ojdbc14 with a ...
0
votes
0answers
5 views
Oracle JDBC Connection Not Closing After Upgrade to JDK7
In my application I need to connect to an Oracle 10 database and run a simple query. Because, that's all I need to do, instead of using JPA entities etc. I have a class that creates a JDBC connection ...
0
votes
0answers
22 views
Java: app issue only in v6.23 or lower - how to figure it out?
To clarify the question:
I've written an app which works (as it should) in the latest Java 7.
However, at one client's site they're stuck with Java 6.23 on a Citrix environment.
At first the .jar ...
0
votes
0answers
22 views
RequestFactoryServlet unexpected error - Cannot cast Boolean to String
I am trying to switch my application to java-7 but when I use RequestFactory to load my object from appengine I receive the following error:
...
0
votes
1answer
26 views
Scale SVG image dynamically to the frame/window size
I am using SVGSalamander.
My code loads a svg image and sets it as background of a JDesktopPane.
File f = new File("awesome_tiger.svg");
SVGUniverse svgUniverse = new SVGUniverse();
try {
...
0
votes
0answers
23 views
(Java 7) Swing application loses keyboard focus
My application is a GUI frontend for a database, and is built using Java's Swing library. The application is compiled using Java 5 (1.5).
When the application is ran using Java 7 I am able to write ...
0
votes
0answers
14 views
Jersey fails to generate WADL since upgrading to Java 7 and Tomcat 7
I'm building a RESTful web service using Jersey 1.11.
Out of the box Jersey generates basic WADL at runtime that you can obtain from your REST app via GET http://path.to.your/restapp/application.wadl ...
0
votes
1answer
44 views
Having spaces in Runtime.getRuntime().exec with 2 executables
I have a command that I need to run in java along these lines:
C:\path\that has\spaces\plink -arg1 foo -arg2 bar "path/on/remote/machine/iperf -arg3 hello -arg4 world"
This command works fine ...
0
votes
3answers
34 views
Returning a Random nextBoolean in a user defined method accessed by switch case statement in java
I am trying to get my program to work the way I want. When I go in the switch statement I want to have the user type in a value and go to that corresponding user createdmethod. When in one of the user ...
1
vote
0answers
39 views
Cobertura doesn't work with Java 7
I am using maven 3.0.4, JRE 1.7.0_09.
When I use mvn clean install all my tests passes and everything looks good - here is my surefire plugin configuration:
<plugin>
...
0
votes
0answers
24 views
How to read dynamic output from Java Process
I'm trying to capture output from a Java Process that doesn't appear to be sending out all of its console output to the Process's input stream.
I am writing some code to do a git push of a git ...
0
votes
1answer
10 views
Runnable JAR file error: Unsupported major.minor version 51.0
I made an application in Java (version 7) with Eclipse (Indigo) when I exported my application interface on a Runnable JAR file on my computer and tried it worked fine, then I tried on another ...
0
votes
0answers
18 views
java suppresswarnings unused in Java 1.7 sdk
@SuppressWarnings({"unchecked", "UnnecessaryLocalVariable"})
T[] newArray = (T[]) new Object[newSize];
tmp = newArray;
found it in source of java 7
why no just
tmp = (T[]) new Object[newSize];
...
2
votes
1answer
26 views
Why file writing permission is not set correctly in Java 7?
Could somebody explain me, why writing permission isn't set for others by the following code snippet on Ubuntu 13.04 and java 1.7 (OpenJDK 64bit). All other permissions are set correctly, except the ...
1
vote
0answers
63 views
invokeAndWait never called in Java 7
I would like to update my program to Java 7, but when I run it, it remains blocked. I create a UI with SwingUtilities.invokeAndWait:
SwingUtilities.invokeAndWait(new Runnable() {
@Override
...
2
votes
6answers
39 views
Compiler errors when static abstract Inner class accesses outer class private fields java
I have a class with private fieds and also a static abstract inner class with the generic type extending the outer class type, that tries to access the outer class private fields but get's the ...
0
votes
1answer
16 views
Java 7: Cannot cast from Object to int etc
I'm having a problem running someones code in Eclipse 3.6 (Helios). The code is written with OpenJDK 7. I'm running Windows 7 and I had to install Java 7 for it. I was using Java 6 before. I get 2 ...
0
votes
0answers
19 views
Strange table added to my schema
I am using Weblogic 11g 10.3.6 with Oracle DB 11g and Java 7 update 9, I noticed that a table named WL_LLR_ADMINSERVER is added to my schema during the first application server startup.
I searched ...
3
votes
3answers
48 views
Type inference in Java 7, When and why should it be used?
@Test
public void TypeInferenceTest() {
inference();
uncheckedAssignment();
explicit();
}
private void inference() {
ArrayList<String> strings = new ArrayList<>();
...
0
votes
0answers
15 views
java 1.7.0_21 - Duplicate extensions not allowed - OS/X
KeychainStore Ignored Exception: java.security.cert.CertificateParsingException: java.io.IOException: Duplicate extensions not allowed
I've written a desktop application in Java 7 to run on Windows ...
1
vote
0answers
20 views
How to get IntelliJ to use Java7 for Google App Engine dev server?
I'm using IntelliJ as my IDE, and I want to run my Google App Engine app using Java7. However, when I run the app, the logging window shows
C:\Program Files\Java\jdk1.6.0_37\bin\java" ...
2
votes
0answers
35 views
Tomcat 7 shuts down abruptly with JDK 7
In our development environment, we have 2 Tomcat 7.0.22 nodes on Cent OS 5.5 handled by F5 load balancer with sticky sessions. We recently upgraded to JDK 7 and have started observing random tomcat ...
0
votes
1answer
31 views
Create a Path from String in Java7
How can I create a java.nio.file.Path object from a String object in Java 7?
I.e.
String textPath = "c:/dir1/dir2/dir3";
Path path = ?;
where ? is the missing code that uses textPath.
0
votes
1answer
41 views
java.lang.VerifyError when using emma / Cobertura on JDK 1.7
I am facing the exact same issue mentioned in the link below when trying to create a build using Apache Buildr.
Testng, Emma, Cobertura, coverage and JDK 7 result in ClassFormatError and VerifyError
...
0
votes
1answer
47 views
How to include servlet-api.jar in my Java solution?
I have a Java solution that needs to include servlet-api.jar in my classpath.
It works if I copy the servlet-api.jar from my tomcat folder to the project folder. But when I upgrade to Java7, the ...
0
votes
1answer
59 views
Getting 502 bad request after deploying Play 2.1.0 app to Cloudbees
I tried to deploy a Play app to Cloudbees (only via push to git repo from which it is built by jenkins), it compiled and should work but I get a "502 Bad Gateway" error when loading the app. There is ...
3
votes
2answers
88 views
JRE 6 and 7 side-by-side with JRE 6 as default (Win 7)
For a migration project to migrate from Java 6 to Java 7 runtime on Windows 7, we are looking to get the following situation:
Both JRE 6 and JRE 7 are installed on the machine
JRE 6 is set as the ...
0
votes
1answer
61 views
Returning JSON response for Spring MVC Post request
I have the below controller method which is uploading files to my server. I would like to return JSON for Plupload's status. However the response seems to be sent back as a dispatch rather than a json ...
1
vote
0answers
30 views
Netbeans Broken Platform
How can I specify two names to satisfy a Java dependency? I'm using Netbeans and by default, Linux calls OpenJDK "JDK_7". Windows calls Oracle JDK "JDK 1.7". I would like to make it so that by ...
3
votes
2answers
44 views
java.rmi.server.codebase not working on linux
I'm working on a twitter like, using rmi.
I work, on Windows and everything works fine.
But on linux I have :
java.rmi.UnmarshalException: error unmarshalling return; nested exception is:
...
2
votes
0answers
56 views
Java 7 update 21 Webstart application certificate issue on windows 2008 R2
The code is signed using a certificate( NOT self signed ) as a requirement for this java version, on Windows 7 users are prompted to run/cancel launching the application, and if they check "Do not ...
2
votes
3answers
64 views
Copying file without creating a FileOutputStream
I am making an application that includes file copying, but when I go through a large directory (1000+) files and copy them to another folder, it uses 290+ MB of RAM.
So, is there any way to change ...
0
votes
0answers
26 views
Java on MacOSX Lion and Mountain Lion, java 1.6 version filename naming help - using JNI C program
due to migration from jdk6 to jdk7 on MacOSX, the project I'm working on requires that MacOSX product to have JDK7, but due to upstream problems between Apple and Oracle, I had to do a workaround.
My ...
2
votes
1answer
86 views
jdk1.7's javac can't find javafx jar without -cp option
I've read several questions on this site and elsewhere that indicate that when Oracle JDK7 is installed, it should not be necessary to specify the classpath to jfxrt.jar when the JDK is installed ...
1
vote
3answers
73 views
How do I implement Objects.hashcode within java 1.6
I have some code as such:
@Override
public int hashCode() {
int hash = 5;
hash = 47 * hash + Objects.hashCode(this.bendWidth);
hash = 47 * hash + Objects.hashCode(this.bendSideLength);
...
0
votes
3answers
50 views
How to parse string to double with out scientific notation
I want to parse string to double but with scientific notation. Please provide ant solution for solving this problem.
String str="123434344";
Double db=Double.parseDouble(str);
...
-4
votes
1answer
58 views
What's Tiered Compilation in Java 7? [closed]
Please help me knowing tiered compilation in deeper, which was a new feature in Java SE 7.
Thanks in advance.
0
votes
1answer
49 views
Universal CSS Engine recommended for Swing applications
It seems the Universal CSS Engine is quite old and not actively developed (the last code change was over a year ago and just 25 code changes / commits in total).
Has someone experiences with it and ...
1
vote
1answer
43 views
Could not initialize class com.sun.javafx.css.StyleHelper
I'm trying to run my first JavaFX example, and I'm stumped because I cannot get the following example to run. I have read related items about java.lang.NoClassDefFoundError and I'm guessing it's a ...
1
vote
0answers
38 views
Java 7: get Path of resource (as object of type Path)
I'm using the features of Java 7 to read in a file. For that purpose I need an object of type Path. In my code, I use the getResource() function to get the relative path (of type URL) to a file.
...
0
votes
1answer
67 views
Solution: Android Studio does not launch after installation [closed]
Android Studio does not launch after installation. I think Android doesn't work because you have JDK <=1.6.
because when I install the lasted JDK 1.7. It's work out of box.
It hope this tip will ...
0
votes
0answers
113 views
Java Platform SE binary: High CPU consumption
As you know opening Eclipse kick starts Java Platform SE Binary. And the Java SE is consuming too much of the CPU (highest recorded 86%). This is rendering Eclipse unusable as it becomes too slow.
I ...
25
votes
2answers
379 views
Array declaration and initialization in Java
The following is the obvious and usual array declaration and initialization in Java.
int r[], s[];
r=new int[10];
s=new int[10];
A very similar case that behaves differently, when the position of ...
0
votes
1answer
41 views
Replicating Mouse behavior in Code
This is related to question: Focus problems with JDK7 and native components.
While working on workarounds we noticed that if we clicked on another component on the window (i.e. a label showing a ...
0
votes
2answers
51 views
Java 7 library for calendar widgets and event calendar widgets
Are there any current and active libraries for Java 7 for creating calendar widgets and event calendar widgets?
Something like this:
just found some old, outdated java libraries which do not work ...
0
votes
0answers
17 views
SolrJ: Migrating from JDK 1.7 to JDK 1.6
I've been developing an application over Solr 3.6.2 with JDK 1.7. However, the specifications have changed so I've been forced to move to JDK 1.6.0_31.
My problem is that, since I moved to JDK 1.6, ...
0
votes
0answers
42 views
installer created with intall4j is not able to launch the application
I have created installer by selecting OpenJdk in jre option.
Application icon blinks on the dockbar and goes and after that nothing happens.
Below is the cosole log.
5/23/13 11:16:47.777 AM ...
0
votes
0answers
21 views
Web Service Client fails JAXB Error
I am trying to get a response from my webservice and i get a java.lang.ClassCastException.
When i try to reach my WSDL(SOAP) webservice from my local host it works fine, but when i deploy the web ...
1
vote
1answer
43 views
Mule Cloud Connector not compiling with Mule Devkit 3.4 and JDK7
I build a custom cloud connector with Mule 3.3.0 and JDK7, and everything was working fine. When I tried updated to Mule 3.4.0, I ran into an issue with passing @Processor functions List parameters. ...
0
votes
0answers
33 views
Files.copy AccessDeniedException When Copying To C:\Windows\System32\ICE_JNIRegistry.dll
I'm using the new "Files.copy [InputStream source, Path dest, REPLACE_EXISTING]" method provided by the Java 7 API.
I'm copying a .dll from the InputStream into C:\Windows\System32. Obviously, I need ...
