Java is an object-oriented language and runtime environment (JRE). Java programs are platform independent, because they are compiled to bytecode and their execution is handled by a Virtual Machine called the Java VM or JVM.

learn more… | top users | synonyms (5) | java jobs

0
votes
2answers
139 views

Android-java Contdition Check error - need some code logic to be corrected

This is my code of a sample details gathering page,where once the customer enters his details, it will be stored until another reinstall of this application, there is no error in the code and it ...
2
votes
2answers
168 views

Automatically determining Junit test side-effects

I have a set of legacy unit tests, most of which are Spring AbstractTransactionalJUnit4SpringContextTests tests, but some manage transactions on their own. Unfortunately, this seems to have introduced ...
0
votes
1answer
771 views

I want to pass my custom object in soap body element , how to do it?

I'm trying to call a webservice using JAXB SAAJ. I use wsdl2java to create web service objetcs. Now i would like to pass one of this object in soap call. How can I do this? I want to pass my custom ...
1
vote
3answers
152 views

Can this work - Objective-C UI supplied by a Java back-end packaged into one Mac Desktop App?

Professionally I am a back-end Java developer, but recently I've been interested in writing a desktop application for Mac, and have started to learn Objective-C as a result. My problem is that the ...
2
votes
3answers
146 views

serialization and desrialization variable deletion

Suppose I serialize the below class (by putting a value to field x, say 5), and before doing the deserialization, I remove field x and put a new field y (int or float), what will be the result? I ...
11
votes
7answers
629 views

A final counter in a for loop?

I have this code: List<Runnable> r = new ArrayList<>(); for(int i = 0; i < 10; i++) { r.add(new Runnable() { @Override public void run() { ...
0
votes
5answers
3k views

how to convert datetime to timestamp in java

forum member I am having one problem with date time in java. Actually I am receiving the startdate in format 2012-02-27T01:10:10 and I want to insert the received date to my database having datetime ...
-1
votes
2answers
1k views

Start service at boot time for android 4.0

I can't not start service when I want to start service at boot time for android 4.0, in android. My code is below: > public class StartUpReceiver extends BroadcastReceiver{ @Override > ...
1
vote
1answer
703 views

second call to storeFileStream in FTPClient returns null

I'm using apache's commons-net FTPClient to upload files. I'm using storeFileStream method. This works well for first call but on the second call it returns null and .getReplyStrings() returns "200 ...
0
votes
3answers
406 views

Declare external Libaries in Java - Compiling Error

I can't compile my Program.java from my own. (Only in Eclipse) When I want to compile it with javac Program.java cannot find symbol errors occur at JUnit classes. Eclipse has the JUnit classes in ...
2
votes
2answers
1k views

Caused by: java.sql.SQLException: ORA-01795: maximum number of expressions in a list is 1000?

I am using java/hibernate/Oracle. i have a list with more than 3000 entries. if i pass whole list i get below exception. Caused by: java.sql.SQLException: ORA-01795: maximum number of expressions ...
0
votes
3answers
2k views

Url connection Inputstream and outputstream objects

This is my code URL url = new URL("http://172.16.32.160:8080/epramaan/loginotp"); URLConnection connection1 = url.openConnection(); connection1.setDoOutput(true); ObjectOutputStream out=new ...
1
vote
1answer
146 views

MY Application is giving org.springframework.beans.factory.BeanCreationException

MY Application is giving following Exception org.springframework.beans.factory.BeanCreationException :Error creating bean with name '/userRegistration.htm' defined in ServletContext ...
0
votes
1answer
186 views

How to look up a resource in Websphere 6.1

I have a web project and a source project. In the web project I have a folder called xsd which I would like to access in my java files from the source project. From a servlet or jsp I can access the ...
0
votes
1answer
389 views

Stop music when open new JFrame

In my application i have add some music to my main Frame. If i click a Jbutton on this Frame it will open a new Jframe but my problem is when i open the new JFrame the music still continue with ...
0
votes
1answer
179 views

hibernate method calling in wbservices(marshall exception)

I am using apache cxf for may webservices. In my service class there is hibernate method. I call that method from my client call...but when call that method from client I get an exception...which is ...
1
vote
1answer
1k views

Parse xml with namespaces via dom4j XPath strange behaviour

The problem is - when I parse an XML with namespaces through XPath it parses XML partly, for example if I set to XPath: /SOAP-ENV:Envelope/SOAP-ENV:Body - parser recognize this good, but if I go ...
1
vote
2answers
985 views

Access the internal memory of android through in independent java code

I have created an xml file here: /data/data/com.appName/emergency.xml Now I want to access this file from my desktop. I am able to access the SD card through my java code. In this case, I think, the ...
0
votes
0answers
75 views

How to monitor the coverage of my code using emma

I will be calling a bunch of commands and each command will in turn call a jar file and execute it. After running through all the commands is there any way which can tell me the total code coverage ...
-1
votes
2answers
714 views

Disable enable JButton in Java

I have a problem I'm trying to disable JButton with setEnabled(false) like this: ButtonNewCustomer.setEnabled(false); But this didn't work so then I imported the Applet packages, but still not ...
1
vote
0answers
214 views

How to add c/c++ Build property to a c/c++ project

I'm developing an eclipse plugin which creates a c/C++ project with some specific requirements provided by me into a wizard page. I had to provide the C nature to the project, but when I open the ...
0
votes
1answer
219 views

Why it warns me the socket is closed when I quit the programme?

Here is my programme, which have a two threads, one is listening user input, another is a socket: bio = new BasicConsoleIO(); bio.assignObject(worker); Thread b = new ...
0
votes
1answer
89 views

Calling method of running java applet (from java, c++ or others)

i have a question. Is it possible to call a method of Java applet which is running in browser? And if it is, how to do it? Language is not that important, (but not lower than c). Thanks in advance, ...
0
votes
3answers
352 views

Is it possible to add or modify element at the head of linked blocking queue?

Or maybe will be better to use other class for synchronized access to data?
-1
votes
6answers
348 views

Getting file names from String array

I am not sure if I asked the question 100% right but here it goes: I got this code: File root = Environment.getExternalStorageDirectory(); File saveFolder= new File(Root, "Save"); String[] ...
5
votes
3answers
2k views

why tomcat does not require restart when jsp is changed

I have been using JSP,Servlet. I know that whenever we change anything in Servlet we need to restart Tomcat Server to get the changes. Where as in case of JSP change, tomcat does not require restart. ...
1
vote
1answer
923 views

Maven2 Binding to a custom Phase

I have a custom plugin that is defined using the pom.xml <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
0
votes
0answers
349 views

JVM signal 11 caused by error in libc.so.6

My Swing Java application is triggering a SIGNAL 11 in libc.so.6. Excerpts from the various hs_err_*.log generated: An unexpected exception has been detected in native code outside the VM. ...
0
votes
1answer
253 views

why is notifyDataSetChanged() not working in my code?

Why is my code not working? I have already tried using notifyDataSetChanged(), or using invalid() for my listview, or using .setAdapter() again for my adapter, but its still not working please help ...
0
votes
1answer
534 views

Error when trying to list of users from active directory (AD LDS)

I'm trying to get a list of all users from my active directory (AD LDS/ADAM) However, I keep getting the following error: Lookup failed: javax.naming.NameNotFoundException: [LDAP: error code 32 ...
1
vote
0answers
368 views

Tomcat 6, JBoss EL2.2 and MyFaces: MyFaces Unified EL support disabled

my problem: I have an application running on Tomact 6 with JBoss EL2.2 and MyFaces 2.1.6. The JBoss EL 2.2 lib is provided by the war and no EL libs were removed from the original tomcat installation. ...
0
votes
5answers
1k views

FileInputStream and FileNotFound Exception

I am trying to retrieve a jrxml file in a relative path using the following java code: String jasperFileName = "/web/WEB-INF/reports/MemberOrderListReport.jrxml"; File report = new ...
0
votes
1answer
2k views

Maintaining a TCP Connection in an AsyncTask

I'm using an AsyncTask to establish a TCP Connection and sending/receiving data through it. My current Code looks like this at the moment: public class NetworkTask extends AsyncTask<Void, byte[], ...
1
vote
1answer
172 views

How can i import .so file in GingerBread 2.3.3?

I want to import .so file in Android Source code in Package Name in lib folder.How can i do that in Android Source code?
1
vote
1answer
401 views

How to use emma for jar files

How do I run use emma with a jar file. I downloaded emma.jar and another jar for testing purpose (MySQLConnector.jar). I placed both the jars in the same folder and tried to give this command java ...
2
votes
1answer
287 views

Accessing embedded resources via custom Tomcat Webapp Loader

In order to load external JAR files that are not placed in WEB-INF/lib folder of my web application I have written a custom loader class by extending org.apache.catalina.loader.WebappLoader class. ...
1
vote
3answers
2k views

Arquillian test execution fails with JBoss 7.1 and vanilla Jboss kitchensink example

Following the README instructions of the jboss-as-kitchensink example, I have tried to run the arquillian tests as advertised, with following results: when running mvn clean test ...
0
votes
2answers
183 views

Additional methods in a Seam entity

I'd like to add some additional methods to a Seam entity. These methods don't have a own column in the database. They just format and combinate some columns. @Entity @Table(name = "event", schema = ...
0
votes
2answers
132 views

update memory before synchronization?

it is mentioned in the Java Memory Model that: When a thread exits a synchronized block as part of releasing the associated monitor, the JMM requires that the local processor cache be flushed to main ...
2
votes
3answers
5k views

android get device ID for adMob [duplicate]

Possible Duplicate: How can I get device ID for Admob I am testing adMob on my android device and following with documentation, I am trying to get device ID executing adRequest. However, I ...
2
votes
0answers
321 views

JIBX - ant script issue

I have a problem with jibx and creating jar. I use Netbeans IDE. In build.xml i have: <import file="nbproject/jibx.xml"/> <import file="nbproject/build-impl.xml"/> <target ...
4
votes
2answers
2k views

utility to generate xsd from java class

I want to generate xsd for the following class public class Node{ private String value; private List<Node> childrens; } What is the best utility to generate xsd schema for such code In ...
-1
votes
1answer
286 views

why do i get org.apache.jasper.JasperException: PWC6049: Attempted a bean operation on a null object

I get org.apache.jasper.JasperException: PWC6049: Attempted a bean operation on a null object when i click the submit button and the request goes to the following jsp: <jsp:useBean id="namebean" ...
1
vote
2answers
444 views

File pool (like Connection Pool)

My English is like 3years old baby. Recently, I made a website with Many File Access. Unfortunately, My tomcat gave me this following error message Fatal: Socket accept failed ...
0
votes
3answers
176 views

File.isFile() returns false while trying to create a file in android from local drive

I tried creating a pdf file into my device out of a file in my local drive. But File.isFile() method returns false.It returns true if i compile the program as a simple java file. Is tht android would ...
0
votes
1answer
62 views

Creating opaque datasets in a group

I fail to understand why my code is giving me HDF5 Library Exceptions. It points at the createScalarDS method as the source of the error. But I believe this method does exist. Can anyone tell me why ...
1
vote
2answers
351 views

Eclipse building Android app: How can I create two versions/editions at compile-time?

I'm writing an Android application and would like to create two versions based on the same code -- a free and a premium version. I have one codebase for both versions with various run-time checks to ...
3
votes
1answer
207 views

Generic equivalent to BeanComparator from Commons BeanUtils

I would like to know if there's an equivalent for BeanComparator from Commons BeanUtils which would allow using generics (and also wouldn't rely on Commons Collections). Thanks.
3
votes
2answers
343 views

Good library for pairing based cryptography in Java

I am looking for a good library that can perform pairing based cryptography (PBC). One I could find is jPBC What have others used? and their experiences? The idea is to test the performance of ...
5
votes
3answers
8k views

Base64 Encoding a file in Java

My goal is to encode a file and zip it in a folder in java. I have to use the Apache's Commons-codec library. I am able to encode and zip it and it works fine but when i decode it back to its original ...