1
vote
3answers
59 views
+100
Initial SessionFactory creation failed.java.lang.NoClassDefFoundError: org/hiber nate/cfg/Configuration
I created a project in Eclipse and executed it succesfuly (It's a normal project, without Maven or Beans, really simple), I created a .jar with the project and tried to execute it but it throws the ...
4
votes
1answer
52 views
Running java files without ugly command prompt box in the background
I made a java program with a GUI using eclipse so whenever I want to run it I run it there, but my friend wants to run it on his computer so I made a class-file using javac in command prompt and also ...
-3
votes
1answer
57 views
Windows can't find the 64-bit JDK [closed]
I just installed the 64-bit version of the Java 7 JDK on my computer, but when I load up Command Prompt and call javac it can't find it. What's going on here?
0
votes
1answer
79 views
execute commands of another program from a tidesdk program
I'm testing tidesdk.
I have a java program that reads from standard input.
I run the program through the console console
java -cp MyProgram.jar package.MyMainClass
And then execute commands and ...
0
votes
1answer
48 views
Running CMD commands from JAVA
I made this code to move a folder then hardlink it to it's original destination. The problem it works fully when I'm just trying it from eclipse but when I make it into it's own self executing jar it ...
0
votes
1answer
44 views
Error when executing java script from CMD
I am working on an online Java Course. We are presently working on building the following instantiation code:
public class NameDriver
{
public static void main (String[] args)
{
...
0
votes
3answers
45 views
Setting Maven environment variable
I been trying to set the Maven environment variable, but it's not liking it. I don't know why, I've triple checked everything and it should be working.
Here is the error I got:
ERROR: JAVA_HOME not ...
0
votes
1answer
55 views
Executing Cmd command in JSF
i want to compile an input text and create the .exe file using a managed bean and a page .xhtml . However the Creation of file went Ok and the creation of .exe dosn't work
here is the managed bean ...
0
votes
0answers
43 views
Using CMD as an output console JAVA
Hello when running a java project from Netbeans I am shown the output console inside the IDE.I would like to have a console similar to this but making use of CMD so I can collect errors from people ...
2
votes
3answers
62 views
Displaying and copying output of a java program from command prompt into a file
i have a Java program which takes input from Users and displays output according to the input. The Program provides the user with a menu of options and the user is required to select one option from ...
0
votes
2answers
51 views
Java won't execute cmd line?
I try to run this shell in java but it never works.
Process p = Runtime.getRuntime().exec(" cat *.java|sed '/import/d'|sed'/package/d'>>b.java ");
When I change the cmd to something like ...
1
vote
1answer
38 views
File Not Found Error Using Scheduled Tasks
I am trying to run a .jar file from Scheduled Tasks (Windows 2008 Server) and I am getting a file not found exception. My program searches for an .xls file, converts it to a .xlsx file, extracts data, ...
0
votes
1answer
18 views
Psql script not committing when executed from Java
I have a .bat file that executes the psql command to import a SQL script file. When I execute the .bat file from Windows command line, it executes correctly. But when I call the .bat file from Java ...
0
votes
1answer
12 views
csslint cli running in rhino gets stuck (win7)
I am trying to get the csslint - cli ( https://github.com/stubbornella/csslint ) to run on my system (windows 7).
After typing in java -jar rhino\js.jar csslint-rhino.js styles.css and hitting enter ...
-1
votes
2answers
73 views
In a Batch file, How do I get files with the largest number in the names?
I need to do this in Command prompt windows Batch file. I have a batch file and I need to compare the file name of 2 files; e.g. I have whatever-5428.jar and whatever-9001.jar and possibly more ...
-1
votes
1answer
29 views
Reading from the cmd & storing delay as an int [closed]
When I ping my ip address on the cmd, I get back delays of 1ms,6ms,9ms etc.... I want to store these as an int in my java program so I can put them on a line chart!
Any help or guidance would be ...
4
votes
3answers
75 views
Get the own process pid from the command prompt in windows
I'm trying to get the PID from command prompt of its own. But when using the below command i'm not getting the desired output always. Can you please point out what was the error in the below ...
3
votes
1answer
42 views
Set System.setOut(); to Command Prompt [duplicate]
I want to set output stream to the Command prompt like this:
Process p = Runtime.getRuntime()
.exec("C:\\Windows\\System32\\cmd.exe /c start cls");
System.setOut(new ...
2
votes
1answer
69 views
Running a Java Application on a Shared Drive from Windows Task Scheduler Client Side
First, just wanted to thank everyone in advance for helping with this, let me take you on my journey...
Task: Run a Java application that is located in a folder on a file server using Windows Task ...
1
vote
1answer
57 views
Translating a batch with java commands for xml to C#
I currently have a batch file with this line:
"C:\Program Files (x86)\Java\jre7\bin\java" -Xmx1224m -classpath .\xalan.jar
org.apache.xalan.xslt.Process -IN FileIn.xml -XSL FileConvert.xslt -OUT ...
0
votes
1answer
52 views
Cannot run 'cmd' command with parameters 'sc sdshow w32time'
I am trying to run an external process in Java and I have no idea why my code isn't working. It works for any other 'cmd' command (for example /c dir). If I replace cmd sc sdshow w32time with cmd /c ...
1
vote
1answer
75 views
Java : Interactive Console using jTextArea
I am developing a cmd like console using jTextArea, for an IDE. What I want to do is as I click the execute button, it provides me interactive input/output screen in the jTextArea.
I am able to grab ...
2
votes
2answers
87 views
Getting command prompt output instantly?
Probably a misleading title, but thanks to people on my other question, I got my program somewhat working, though now not sure what to do.
Here is my method to run command prompt commands and return ...
0
votes
1answer
47 views
Print from java in cmd
I ran my program in Java by creating a jar (myProg.jar), and run it via the CMD:
myprog.jar myarguments.
The problem is that I want that the cmd will wait until the program would terminate, and ...
0
votes
1answer
63 views
java+cmd:classpath resource file not found
I have a spring application .. and my beans.xml is somewhat :
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
...
0
votes
1answer
60 views
pausing a batch file while waiting for java to finish
I need to run a two java programs from a batch script. I need to wait for the first java program to finish running before the second one starts. Is there a way to do this? I'm on a windows machine and ...
3
votes
1answer
113 views
java write netstat in cmd
My goal is to print all the internet connections on my computer. When i type netstat on cmd i get the internet connections list. I wanted to do the same in java, automatically.
My code:
Runtime ...
1
vote
1answer
104 views
how can cmd.exe be launched from java?
in .net if I wanted to open a new command line window, I could just write.
System.Diagnostics.Process.Start("cmd.exe");
in java, however, the following code does nothing:
new ...
-2
votes
2answers
88 views
How to execute a cmd command using java program [duplicate]
I want to execute a cmd command using java program
ffmpeg -i input.mp4 output.mp3
I want the above command to be executed in cmd using java language.
and in above code I have directly given the ...
0
votes
0answers
62 views
How to identify success of command in cmd.exe
I am using Java (Swing) to run a command in the background via cmd.exe. The command I execute may take different amount of time depending upon the input I give. After the execution of that command I ...
1
vote
6answers
185 views
Run cmd commands through java
I found several code snippet for running cmd commands through java class, but i could not get it,
This code for opening the cmd
public void excCommand(String new_dir){
Runtime rt = ...
1
vote
2answers
41 views
How to change the colors of text and background for cmd in Java?
I have been doing Java for a while now and I have never seen a tutorial on how to make cmd change colors of text and background. In C++ you can just use SetConsoleTextAttribute(); and it will change ...
0
votes
1answer
55 views
An application to get Userinput and to run commands background in windows
I want to create one standalone executable file which accepts some user input and it should use those inputs as arguments to run a command at CMD as background process. For GUI i thought of using ...
0
votes
1answer
101 views
how to run web service (WSDD file) from cmd?
am trying to run wsdd file from cmd , but am having this error in the pic above. Its seems that the wsdd is not seeing the main class in the Sample.java file knowing that its in the working ...
2
votes
1answer
152 views
Unable to start telnet session from java
I am currently working on a Java Applet which is supposed to start a telnet session via command line. My current approach is to run:
String connectionString = "cmd /c start cmd.exe /k \"telnet\"";
...
0
votes
2answers
55 views
ProcessBuilder and cmd
Why does
ProcessBuilder pb = new ProcessBuilder("cmd","/C","dir");
work but
ProcessBuilder pb = new ProcessBuilder("cmd","dir");
does not.
I mean in the latter case the cmd starts but the ...
0
votes
0answers
93 views
getting exit value of actual command in process builder
i am using ProcessBuilder for executing windows command through java code , here is my code
String[] command = {"cmd.exe","/c","jar.exe"};
ProcessBuilder processBuilder = new ...
0
votes
1answer
44 views
How to show console window when executing external jar?
When starting an external Java application, I'd also like to see the console window. From what I've read this should be possible when executing cmd /c start xyz. However, by using the following code, ...
1
vote
1answer
138 views
How to click Yes on UAC on CMD Admin?
How can I click the Yes button on the cmd-admin mode using Java code?
I just used the code below to automatically opens the cmd admin using the shortcut button (admin enabled):
Runtime rt = ...
0
votes
0answers
100 views
Why won't my jarsigner work?
For some reason why I try any command including just jarsigner it gives me the following error:
Error: Could not find or load main class sun.security.tools.JarSigner
Do I have an incorrect version ...
6
votes
1answer
119 views
Find name of .jar in java(w).exe process list
In my company environment, there's this script that runs on plenty computers and that I occasionally ask the users to kill because it's known to lock up from time to time.
I was thinking of a way to ...
0
votes
1answer
171 views
Execute “.bat” file that contains multiple lines from Java
I have a folder named A that contains a .bat file: a.bat.
If I wanted to write a .bat file I could write:
cd A/
call a.bat
and I would see the results, but if I want to run it from Java I have ...
0
votes
0answers
108 views
How return to previous line in java?
We are writing a program that would write some strings on the command prompt.
Sometimes we need to return cursor to previous line. Is there any code like \n or \b to do it?
I search about it and see ...
-2
votes
2answers
71 views
“java -version” command result in error stream [duplicate]
i am getting output of following command in error stream instead of input stream
Runtime rt = Runtime.getRuntime();
ProcessBuilder builder = new ProcessBuilder(new String[]{"cmd.exe","/c","java ...
1
vote
1answer
535 views
Java ProcessBuilder with multiple params with spaces
I know that there is a lot of solved questions regarding executing processes from java.But I am unable to solve my problem using answers provided.
I am trying go create postgresql database backup from ...
1
vote
3answers
95 views
args in '.bat' file contain some spaces, how could I get the args correctly?
Stat command in cmd:
start.bat -arg1 -ar g2 -arg3
How can I get the second arg? The string 'ar g2' contain one space .
I need get the args(may contain space character) from bat file, then I will ...
0
votes
2answers
147 views
how to leave cmd open after batch file executes
I am current'y taking a Java course and because of security reasons it won't let us set environment variables for the Java compiler. What we have to do all the time is open cmd and then put
set ...
0
votes
0answers
67 views
Execute a java program that takes input from C# [closed]
What I want to do is execute a Java program from C#, but it's a program that takes input, NOT on-run. It's a bit like cmd.exe. I am able to run this from the command line.
Any help would be ...
0
votes
1answer
145 views
Run jar on tomcat via hadoop
I have a dynamic web project with tomcat (hadoop is installed). I want to allow users to define an argument for my hadoop application via the website. On the server I then want to run my jar with the ...
2
votes
3answers
6k views
“Error: Could not find or load main class My.class”
Im using Java SDK 1.7 on Windows 7 via cmd.exe . Up until a few hours ago everything was working correctly when suddenly I was unable to run my compiled class files, consistently presented with the ...





