Tagged Questions
Java is an object-oriented language and runtime environment (JRE). Java programs are compiled to bytecode and run in a virtual machine (JVM).
0
votes
0answers
5 views
Determine Java code size of modules
For a normal executable file on Linux I would do something like size <executable> to get a quick overview, or readelf -a <executable> for a more detailed overview.
Is there a similar ...
0
votes
0answers
4 views
Android Java, draw on a scaled canvas
i'm developing an android drawing application, it has a relativelayout with a custom view in it for drawing with. So far it all works except when I scale the canvas the drawing happens in the wrong ...
0
votes
0answers
6 views
Using Google feed api java
I'm trying to fetch some data using Google feed api. But line = reader.readLine() is always null.
URL url = new URL("https://ajax.googleapis.com/ajax/services/feed/find?" +
...
0
votes
0answers
3 views
Configuring JBPM ant in JBPM
I have done JBPM 5.2 integration with tomcat.
Please help me in configuring ant in JBPM so that it make different version in DB for every build.
Regards,
Vinay
0
votes
0answers
7 views
java.lang.NoClassDefFoundError: Could not initialize class sun.awt.X11GraphicsEnvironment when trying to convert the svg to png using batik
I'm trying to convert a svg data to a png file (for the puspose of exporting the chart datas as pdf) using batik in my server side.
when the server runs in the standalone mode it is svg to png ...
0
votes
1answer
8 views
Not able to launch Jenkins
I installed the Jenkins in Ubuntu 12.04
I changed the port to 8888.
root@kandabap-ThinkCentre-M91p:/etc/default# dpkg -l | grep jenkins
ii jenkins 1.518 ...
-4
votes
0answers
23 views
someone give a idea to pass anykind of date in runtime
SELECT absentdt,period FROM stu_attendancemaster
WHERE classid=70 AND absentdt BETWEEN '2013-06-01' AND '2013-06-19'z
where how i can use this query as fromdate and todate in a java program and by ...
0
votes
1answer
8 views
calling oracle PL/SQL function in java - Invalid column type error
I want to call a plsql function from java class but that function (isValidPeriod) return a boolean datat type and JDBC doesn't support it
1
vote
1answer
13 views
Do I need to synchronize ExecutorService.execute()?
I have created a Enum singleton as below:
public enum Logging {
INSTANCE;
ExecutorService pool = Executors.newFixedThreadPool(4);
}
Now I am using this pool for logging ...
0
votes
1answer
15 views
Chat client - Socket and server socket concurrently
So for a project I am making a little peer to peer, two person chat client using Java in the Netbeans IDE.
My question isn't exactly code but more about structure and how to implement.
What I want ...
0
votes
0answers
5 views
How to call a java code in Apache ODE using BPEL
I have implemented HelloWorld in a BPEL project and successfully run it.
As the next step, I want to run some java code through Apache ODE using BPEL.
0
votes
0answers
37 views
how to transfer files from one machine to other using java,like client and server?
I want to transfer a file from one machine to other using java technology. I am java developer. Do i need to write 2 programs for this and execute client program on one machine and server program on ...
0
votes
0answers
8 views
Undefined onKeyDown inside SherlockFragment
Im getting the following error when using the below code
The method onKeyDown(int, KeyEvent) is undefined for the type SherlockFragment
public boolean onKeyDown(int KeyCode, KeyEvent event) {
...
0
votes
1answer
15 views
How to autoupdate the excel dates using java
I'm automating a scenario in which I need excel file to be updated with current date on daily basis( using java or any macro).For this to update on daily basis,I need to open and close the file so ...
0
votes
0answers
17 views
How to start 2nd Jframe by click menu item in 1st java windows application (Jframe)
I am using eclipse 4.2 with Java.
I have 2 java program : AppWin.java Form1.java
AppWin.java is gui windows application with menu/menu item1.
Form1.java is a Gui Jframe
I like to call Form1.java ...
0
votes
4answers
37 views
Logic Explanation behind this code- Java
I have this code written by someone else and I am having hard time to understand it.
It is working fine and generates correct result but I couldn't understand how it works
package you;
import ...
0
votes
5answers
33 views
Incompatible types. Required classname. Found int.
I have this method in my class,
public static AccountHolder getAccountHolder(String username, String password) {
try {
String verifyQuery = "SELECT COUNT(username) FROM ...
0
votes
0answers
20 views
I am getting 404 error suddenly, I am using tomcat 7 +Eclipse juno
My application was running properly on same configuration and then I tried to run application after 5 minutes without any changes, It's showing 404 error.Please help me on this.
-2
votes
0answers
33 views
JSON - deserialize muliple objects to class
I have got a json string.
How to deserialize this string to class using Gson?
This is multiple class json string. I created these classes:
Response,
Status,
OrderItems
Unit
Payments
Adress
...
0
votes
0answers
4 views
OSWORKFLOW integration with spring
I am trying to initialize workflow with spring. For that i have added workflow_2.8.2.jar and as for my workflow descriptor i am simply using my localhost to store its dtd.
Now, when i am trying to ...
1
vote
2answers
25 views
Access logger in different class
I have created a logger in my main class as:
public static Logger logger = Logger.getLogger( MainClass.class.getName());
I declared it public static.
this is log4j.properties:
Root logger option
...
0
votes
0answers
23 views
first attempts at creating Application Project result in java.lang.NullPointerException error
I have downloaded the ADT bundle (yesterday), unzipped it, opened Eclipse and followed the directions from http://developer.android.com/sdk/installing/bundle.html to set it up. I then followed the ...
0
votes
1answer
32 views
Resizing JPanel
I have a question about resizing a JPanel.
I have a JSlider, which resize a JPanel dynamycly. When i change the value Height() of JPanel, size of panel decreases or increases, from top to down, ...
0
votes
0answers
12 views
Multiple application properties in struts2 and need to change property file in java based on somecondition?
I am using
struts.custom.i18n.resources=file1,file2
file1(ApplicationResources1.properties)
enter.user = User name
file2(ApplicationResources2.properties)
enter.user = User name1
based on some ...
-7
votes
0answers
52 views
Today in IT fileld which technology(c++,PHP,JAVA,Android) is more demand in industry? [closed]
i have knowledge c++,PHP,JAVA,Android but not deeply knowledge...,which technology is more demand in it industry and how ? ANDwhat i do for best job ?
1
vote
2answers
28 views
Application code used to work but now crashes
Thing is my application used to run PERFECTLY but then i wanted to change packages names and classes names so i created another project and copy pasted my code and did the changes there. no error in ...
0
votes
0answers
6 views
DynamicReports stl.style().setFont(font)
I am trying to embed my font file into jar files, so my application can be executed with out any dependency of fonts in any platform.
The problems is that, when I want to set the font of ...
-2
votes
2answers
33 views
Details in class file
When we compile java file we will get class file which contains byte code.
My question is
The class file generated is contains information about javafile?
Because in eclipse when we created one java ...
0
votes
1answer
10 views
Selenium 2 in Java JUnit Test Error: Could not start a new session
I'm designing a website login test program in Java by using Selenium2.
When I run it in JUnit in NetBeans, error shows up: "testLogin(JUnitTest.LoginTest): Could not start a new session. Possible ...
0
votes
0answers
8 views
how to locate element in webdriver for embedded flash
I'm trying to locate a button on this embedded window using firebug but due to flash-embedded objects, I am not able to do it.
How I can locate elements in embedded objects in Web driver? Code is as ...
0
votes
1answer
18 views
How can I avoid formatted cells which doesnt have values while converting excel file to pdf
I am using itextpdf for this. And I got pdf corresponding to the excel file. But the 2nd sheet is formatted using formula. 1000 cells are formatted like this, but only 20 cells have values right now. ...
0
votes
1answer
23 views
Managing payments on my website
I am not sure if this has been asked before but I am not able to find the scenario online. I am planning to build a website where there are 2 types of users, sellers and buyers. Sellers register ...
0
votes
3answers
29 views
Run Java project (built in eclipse) using Batch File
I want to run my java project which i've built using Eclipse IDE. Now my goal is to create a batch file which will execute my project with one click. i referred question , but didn't get any idea. ...
3
votes
0answers
39 views
Wrong key being set with HashMap in Intellij Idea
Here is my function:
public String uploadImage(URL image,String message) throws Exception{
HashMap<String,String> paramArgs=new HashMap<String,String>();
...
0
votes
0answers
14 views
How to manipulate BufferedImage
Processing has a class named PImage from which you can get an array of int that contains values for all pixels. Then, you manipulate this array and call updatePixels() and viola you have applied an ...
0
votes
1answer
16 views
Exception :com.sun.jersey.spi.inject.Errors$ErrorMessagesException
I am using the Jersey API for the web services. I am sending the multipart data from client to server. I am getting exception when webservices start to execute.
Please help me fix this issue. I tried ...
0
votes
1answer
33 views
serialize and deserialize between 2 classes
I'm trying to implement the following structure into my program:
public abstract class A extends Service {
public abstract void getData();
//variables
public int ...
0
votes
0answers
7 views
GXT Window is there a onblur event
I am using GXT window to create a popup edit window for editing a form field. As I edit the text field, the form field also changes. But I want to capture when the user has clicked outside of the ...
2
votes
1answer
14 views
Class members in Fragment become null after Home button press and wait
Problem Description
Application which I'm writing has 3 Fragments. Main Fragment Activity has a Search Box with Search button when I press on a Search button the function below is called:
...
0
votes
0answers
18 views
Hibernate Validator implementation
I am considering implementing Hibernate Validator for my project.
http://www.hibernate.org/subprojects/validator.html
I have a few questions and hopefully experiences software engineer can share ...
1
vote
3answers
43 views
Eclipse finds syntax errors that did not previously exist
I have been working on this project for a long time off and on, and just came back to work on it after leaving it for a month. The last time I worked on it, everything worked fine and I was cleaning ...
-1
votes
2answers
24 views
close jframe while opening new one
i try to open new frame which is named stage2 while closing the main frame. but when i put main.setVisible(false) there its said not an enclosing class and i put this listener on jpanel class which ...
0
votes
0answers
9 views
How to solve NetCDF java library functions which are deprecated?
I am trying to create a netCDF File in java using NetCDF jar, but it shows the method is deprecated. I am using the latest java library which I downloaded from unidata website. Can anyone throw some ...
0
votes
2answers
28 views
one month after start date-joda
I have to call a method that needs two parameters begin date and end date and my end date is exactly one month after the begin date. I used this:
mymethod(startDate.toDate(), ...
0
votes
1answer
20 views
Attach watermark in each page of PDF
In my grails project I am using grails rendering plug-in to convert a GSP into PDF. PDF have 3 to 5 pages.
Now I need to attach a watermark as bottom right of each page of the PDF.
I have no idea ...
0
votes
0answers
10 views
Android java.util.logging Level.CONFIG or lower not getting through
I'm trying to use java.util.logging on android, but has come across the issue that Level.CONFIG or lower doesn't get through to LogCat.
Logger rootLog = LogManager.getLogManager().getLogger("");
...
-6
votes
1answer
32 views
Java frameworks used for web development [closed]
can any one name different types of framework controllers and ORM used in Java.
I have only used Servlets as controller and DAO as ORM.
0
votes
1answer
27 views
why sqlite exception returned?
i don`t know what should i do about "not supported by PreparedStatment" exception.
my code is
connection = connectToDB();
print("Connection Success");
String sql = "Create Table ...
0
votes
1answer
19 views
Struts 2 - Removing action from url
I have been searching for methods to remove .action suffix extension from the url in Struts 2. I have gone through various variations of similar codes. For eg:
<constant name = ...
0
votes
0answers
7 views
How to building Mp3 support in to SoX
Sox by default does not include mp3 support. I can't run command if use file audio format MP3.
sox -m input_a.mp3 input_b.mp3 mixed.mp3
In linux I have successfully installed SoX and Lame, but now I ...



