Tagged Questions
0
votes
2answers
104 views
Eclipse dialogs open twice when clicked with mouse
Within the past 2 weeks, Eclipse has started behaving oddly. Not sure what changed, although I did install JDK and JRE 7u21.
Any dialog (Search, Eclipse About, Switch workspace, etc.) I open by ...
0
votes
3answers
46 views
Setting up Eclipse with JRE Path
I have downloaded and extracted Eclipse. I have Eclipse in the following directory: C:\Applications\eclipse. When I try and run the executable, I get the following message:
I currently have the ...
0
votes
0answers
30 views
how to create jdk virtual environment when jdk is not present in the system?
i created software for compressor and decompressor and the code is written in java but for compressing and decompressing you require jdk. so is it possible to create virtual environment where we can ...
0
votes
2answers
108 views
How to pass the -D additional parameter while starting tomcat?
I have a maven project, after running command mvn install all project as well as module compile and copied to local repository successfully. But now I want to run the generated web application in ...
0
votes
1answer
58 views
Java Distribution Code vs Development Code
I have an application developed in Java that's almost ready for distribution. However, I have a problem switching from my development env to publishing env, and back to development. For instance, in ...
1
vote
1answer
257 views
Maven fill properties file switch profile without adding file in classpath
I would like to fill a property file common.properties with values depending environment profiles (dev, prod...) but I don't want the file being added in the classpath.
I read several topics like
...
1
vote
1answer
439 views
System.getenv() does not list all the environment variables
I have noticed that some of my environment variables are not being picked up by the JVM.
In my .bash_profile I defined the following:
IO_HOME='some_value'
export IO_HOME
and by doing in shell:
...
1
vote
1answer
128 views
Installing environment descriptions in eclipse
I have Execution environment references were not checked for '...' because no environment descriptions are installed. error.
I guess I need to install environment descriptions ...
2
votes
1answer
574 views
To Environment.getExternalStorageDirectory() or not to?
I don't understand the message I'm getting with Eclipse. I added a "/sdcard" as a directory, and I got the warning:
Do not hardcode "/sdcard/"; use Environment.getExternalStorageDirectory().getPath() ...
1
vote
3answers
84 views
Is there a way to change the internal radix of Java code?
If I want to write a program that deals almost exclusively with, say, base 8 math, is there a way to change the source code or JVM to perform all calculations with this radix without having to ...
0
votes
2answers
73 views
Determining whether library class is used from GWT app or regular Java
I'm writing a couple of library classes that I am sharing between several projects. Some of these projects are plain-old Java and others are GWT applications. For some of these classes the exact ...
4
votes
2answers
104 views
Setting a property in java:comp/env?
I write Java projects with Eclipse and I wonder if there is a way to set a new property in java:comp/env via java itself?
Every help is appreciated!
1
vote
2answers
1k views
Java System.getEnv()
In mac OSX and in Linux CentOS, I insert a new system environment variable (i.e. "MYAPP") using .bashrc & .bash_profile. I even restarted my laptop (mac) and my server (linux).
When I use the ...
1
vote
1answer
283 views
Sourcing env variables into Java from a text file, bash-style
I have a bash file (let's call it bash_file) which contains a number of environment variable assignments (e.g. TOOLS_DIR="/opt/tools") as well as bash code which sources another file (e.g. source ...
0
votes
1answer
7k views
Java Runtime Environment HKEY_LOCAL_MACHINE Error
I was trying to get rid of older versions of Java (since I still had 1.6 and I also had 1.7) on my Windows XP machine. Well uninstalling 1.6 I got an error about Java Runtime Environment. When I try ...
2
votes
2answers
2k views
Using DateFormat.getDateTimeInstance().format(date);
When running some tests I came across the following issue. When using:
private String printStandardDate(Date date) {
return DateFormat.getDateTimeInstance(DateFormat.SHORT, ...
1
vote
1answer
86 views
Is it a good practice to package jar and config for all environments (dev uat prod) in one zip?
I am writing software deployed on unix servers by some operations team. The software is deployed to different environments by ops. Namely dev, uat and prod.
The executable will be configured ...
0
votes
2answers
69 views
Calling a path in java method
I have a small problem calling a path(that has the python file, that I need to run) in the following code:
Process p = Runtime.getRuntime().exec(callAndArgs,env,
new ...
1
vote
0answers
111 views
can you access environment property from java annotation?
I have an annotation that looks like:
@MessageDriven
@ActivationConfigProperty(propertyName = "maxSession", propertyValue = "1")
public class ProcessingEntitiesQueueListenerMDB implements ...
0
votes
3answers
143 views
Check what mobile the user is using
Is their a way to check what mobile the user uses.
I will explain why I want to know this.
In my app, I must take photo's from the Camera path of the user.
In the samsung devices, that is ...
1
vote
1answer
96 views
Java working environment when having to use native code
I often have to depend on third-party native libraries to work in conjunction with my Java code. I wonder, is there anyone out there that can share their best practices in working in such an ...
2
votes
2answers
62 views
Accurate gauging performance tests across environments
I use Java in this question but this really applies to all modern app development. Our "environment pipeline", like many of them, looks like this:
Developer sandbox
Continuous integration & ...
0
votes
1answer
305 views
IntelliJ : unable to find JAXB generated classes in sub project
I have a Maven project which has a number of child projects. For historical reasons the project is structured like this:
Root
- client
- core
- model
- parent
- webapp
where parent is the parent ...
0
votes
1answer
210 views
Unexplained ArrayStoreException - Code or Configuration Issue
I am trying to debug an application that is working properly when tested locally on a Windows XP machine (version 5.1 build 2600 Service Pack 3) through Websphere Platform 6.1 running java version ...
0
votes
2answers
436 views
Setting environment variables in Java Applet
I'm using xuggler api in my applet. And xuggler's wiki says I cannot use it in an applet. But I tried it with 3 computers. And my applet will work if I can add xugglers bin folder to system ...
0
votes
2answers
805 views
how to simulate a cloud environment using java
I would like to simulate a cloud computing environment for testing purpose. I would prefer to develop this environment using java.
I am not sure where to start and how to start as I have never done ...
4
votes
3answers
858 views
Tomcat production / dev environments
In PHP development, its possible to determine whether or not the app is running in a production or a development environment from the servers 'environment' variable.
Is there a similar variable ...
0
votes
2answers
118 views
Setting up own environment variable lookup
I have standalone Java application ,in that i have various modules
Application starts from one classes main() method and then application goes on.
Now i wanted share variables in form of key/value ...
0
votes
3answers
454 views
How to set tomcat.runtime.environment.version on the web server?
I have Java function:
public String getEnvironment(){
String env = System.getProperty("tomcat.runtime.environment.version");
if(env == null)
return "DEV";
return env;
}
and it ...
5
votes
6answers
4k views
spring 3.1 configuration: environment not injected
I am using the following for the spring 3.1 configuration:
@Configuration
@EnableTransactionManagement
public class DataConfig {
@Inject
private Environment env;
@Inject
private ...
6
votes
2answers
766 views
List of useful environment settings in Java
I've been wondering a long time if there was a comprehensive list of (probably static) methods/fields that store runtime information for the JVM. An incomplete list of examples:
System.out / ...
1
vote
3answers
402 views
How to enumerate all environment variable in Java
System.getenv(name) needs the name of environment variable.
I am trying to call Runtime.exec(String[], String[], File), the secondary parameter need an array of environment variable, I am not sure ...
0
votes
2answers
586 views
How do I launch a java process that has the standard bash shell environment?
I've tried looking into process builder, but I'm not sure how to source the bash environment into the process.
For example I'm using the following to launch my process:
Process p = new ...
22
votes
2answers
16k views
Java system properties and environment variables
What's the difference between system properties System.getProperties() and environment variables System.getenv() in a JVM?
6
votes
2answers
8k views
Environment variables in Eclipse
I am able to run a sample hadoop program from the command prompt and am trying to run the same program from Eclipse, so that I can debug it and understand it better.
For the command line program, ...
0
votes
2answers
253 views
An easy question about java and environment variables in ubuntu
I have Ubuntu 10.10 with java already installed. I am able to execute java command from any folder. I supposed that could be because I had java Classpath setted. But neither JAVA_HOME nor CLASSPATH ...
1
vote
1answer
956 views
Setting environment variable TESSDATA_PREFIX in Tomcat
We are using Tesseract OCR Java library called Tess4J. It works fine if run as a standalone application. It needs a variable called TESSDATA_PREFIX which contains the tessdata config and other ...
1
vote
1answer
562 views
java system.getenv(HOME) returns tomcat6 directory
Hi as the subject reads
System.getenv("HOME")
in my action class (struts2) and deploy that as a war in
/var/lib/tomcat6/webapps/
When i run my class, getenv HOME returns
/var/lib/tomcat6
...
0
votes
2answers
116 views
Why does this simple Java example from 2008 fail in my up-to-date Eclipse/JDK?
Here is a very simple example in Java intended to print out all of the system environment variables:
http://www.devdaily.com/blog/post/java/java-how-to-print-system-env-environment-variables
The ...
12
votes
4answers
13k views
No 'server' JVM at '…'
I'm running a java application that we distribute as a server-side system. I'm trying to write a launcher ("write" is somewhat of an overstatement here, I'm basically just copying the Java.exe file so ...
0
votes
5answers
2k views
Set environment variable and fetch the value during Run time
I need to set an environment variable during runtime and fetch the value of that variable in UNIX environement using JAVA .
Given below is my code.But, it's not able to fetch the environment variable ...
1
vote
5answers
678 views
What is the typical Java (Java EE) development environment in Software Companies? [closed]
I have been a project manager so far in a small company that focuses on PHP and .NET Development. No Java Development.
I learnt Java and J2EE 4 years back. I know things changed radically now. I ...
0
votes
3answers
257 views
Wrapper for Hadoop Applications
Does there exist a wrapper for Hadoop applications? I'm referring to a wrapper that would turn a Hadoop setup into a standalone application. I understand that this would defeat the purpose of Hadoop. ...
0
votes
1answer
73 views
Building a single package containing multi-env setup with Maven
we are asked to build package that contains configurations for ALL environments, the resulting package should like:
/bin
/lib
/config/prd/instance1
/config/prd/instance2
/config/uat/instance1
All ...
4
votes
5answers
2k views
How to make Android app automatically configure w/ debug vs. release values?
I'm working on an Android app, specifically one that uses the Facebook Android SDK. In development mode, I'm working with a test Facebook app that goes by one ID. However, in release mode, the app ...
0
votes
1answer
142 views
How to programmingly set the loading path of dynamic libraries in java?
System.setProperty("java.library.path", "pathToLibs");
doesnt work because it seems either "java.library.path" is read only or JVM just ignores the property.
I know it can be done by setting ...
0
votes
1answer
60 views
How to manage poperty files for different application instances?
I think in our project we have the common problem for really big projects... We have 4 regions in which our system is installed - Europe, USA, ASIA and Japan.. Each region has 3 types of environment - ...
2
votes
5answers
2k views
Java Runtime command line Process
I have a class with the following code:
Process process = null;
try {
process = Runtime.getRuntime().exec("gs -version");
System.out.println(process.toString());
} catch (Exception e1) {
...
0
votes
2answers
2k views
How to set environment variables for javac to be able to find imported packages?
I am not a java developer. I just want to run a java application (which can be downloaded from:
http://code.google.com/p/k-shortest-paths/downloads/list
, under this name: ...
1
vote
4answers
1k views
Set Windows System Variables with Java
is there a way to add a specific directory to the Windows systemvariable %PATH%?
This doesn't seem to work:
String[] cmd = { "cmd", "/c", "set", "PATH=\"%PATH%;c:\\test\"" };
...



