-4
votes
1answer
20 views

Open Minecraft.jar from specific Java directory in Terminal (linux) [closed]

I would like to ask how to run minecraft.jar or any .jar program using Java in specific directory typing the command in Terminal. I already know that it can be launched with java -Xmx1024M ...
0
votes
0answers
35 views

java encoding issue (Ubuntu terminal)

I'm university student majoring computer engineering. I have been tried to rewrite the framework of some tools. But I can't read '*.java' source. that like.. 0000 1020 3040 2343 2034 3521 3425 4324 ...
0
votes
1answer
16 views

Java key release event from STDIN in terminal raw mode

I'm trying to write a console game using java, and when you hold down a key, I want it to move your character constantly. This means I need key press and key release events, because there is a delay ...
2
votes
3answers
35 views

Java: Read data from the terminal using Process()

I'm trying to read the response from the terminal while using a command in with the Process()function. I have looked on other examples but I can't get it to work. I wan't to be able to process the ...
0
votes
1answer
26 views

How to execute java application avoiding compilation output to be displayed?

I have to execute a java application on a remote server through command line. I normally run the application like: java -jar /home/user/files/simulator.jar -nogui:/home/user/files/my-sims/sim1.csc ...
1
vote
2answers
53 views

Input in the same line of the message (terminal)

Is there an Syntax that allows me to read the input from the user in the same line of the System.out.println() line? Example: What is your name?:(<-- Output) Jack (<-- Input from user in ...
0
votes
1answer
50 views

Read python in processing

Does anyone know how to read a python file in processing without using processing.py or other third party library or platform? I have a python file that can generate a text and want my processing read ...
0
votes
2answers
35 views

How can i run java application with console-only?

I wrote an application in java that have graphical window. (and uses open-gl) Now, this application should work on Linux servers. What happends if i try to run the application on a linux terminal-only ...
0
votes
1answer
40 views

Why alternatives command is needed when installing Java on a Linux machine

The below command is need when installing Java on a Linux machine (saw the command in a tutorial). alternatives --install /usr/bin/java java /usr/java/jre1.7.0_01/bin/java 20000 man alternatives ...
-1
votes
0answers
40 views

Writing web terminal emulator as java servlet [closed]

The question is vague but maybe I can get good recommendation. I want to write terminal emulator interfaced by a browser. As server side I plan to use Java. So here is one question, what is better to ...
-1
votes
2answers
74 views

“javac: file not found:” when compiling file on Mac

I am trying to learn Java on MacBook Pro, but am not even sure how to compile or run a program and keep getting the following in Terminal: javac: file not found: Example.java Usage: javac ...
1
vote
1answer
33 views

Java - Error while executing command

I am trying to execute a command in Terminal (on Ubuntu) and I can't seem to run the command cd, here is my code: public static void executeCommand(String[] cmd) { Process process = null; ...
0
votes
0answers
29 views

JLine, how to get the full filename in Windows

Dear all JLine users, I am recently developing a console application where I use JLine, to provide command and file name completion. It works pretty well with FileNameCompleter but however I cannot ...
0
votes
2answers
58 views

Java - System.out.println() viewable from application?

I have a Java application that runs great :) While uploading files, it uses the standard output to show progress : "System.out.println(...);". When I run it in Eclipse, well it works perfectly, but ...
0
votes
2answers
68 views

How to run JDBC code from terminal?

I have compiled my code using -cp <mysql-connector-java jar file>. There were no errors during the compilation. All the class files were created To run the code, I went to one directory higher ...
0
votes
1answer
21 views

Calling external class and methods

To start off I am in the beginning stages of learning Java and I am working on different exercises. One of the exercises gives me this external class: http://pastebin.com/g8hCTRCc I need to write an ...
0
votes
1answer
74 views

Running java application in terminal window: No such file or directory?

I am using Eclipse for java and I just created a program I am trying to run on the terminal window for Mac. Every time I try to run it I get a No such file or directory. In the terminal window I ...
1
vote
1answer
42 views

How do you pipe output to the end of a file? (Java, Terminal)

I currently type this in the command line: javac *.java && java NeuralNetApp > xorMomentumTest.txt This erases everything in xorMomentumTest.txt and then fills it with output from the ...
3
votes
0answers
43 views

Reading from terminal without waiting for “newline” with Java [duplicate]

I'm trying to read every character that user inputs without waiting for a "newline". This code doesn't work, as AFAIK Scanner waits for the newline character before sending input to the application ...
1
vote
1answer
62 views

Manipulating files through the mac terminal in java

I am working on a program that takes a .doc or .pdf file and converts it into a .txt. From there, I use the java scanner to read the file and do with it what i please. In order to convert the .doc and ...
3
votes
1answer
92 views

Java - What's the difference of double-clicking and running from Terminal for opening a .jar file?

I am using a Java-based application (a .jar file) to access a website for online discussion. And recently I've experienced some weird difference between running the application by double-clicking (on ...
1
vote
2answers
122 views

How to make Terminal open in fullscreen and homebrew and do a script using Applescript

I'm trying to write a script in Applescript to open Terminal in fullscreen and homebrew style, and then make Terminal execute a java program i wrote. That program will then work in Terminal (no GUI). ...
0
votes
0answers
135 views

Killing linux process from java doesn't work in Runnable JAR

In my programm, I start a gnome-terminal and execute a programm in it. When that programm finished running a simulation, I kill the process and restart it again. Killing it is important because ...
3
votes
3answers
95 views

Java command line exit command?

I'm making a server, and it is on a Text Based Raspberry Pi. basically, everything is running from the command line, so when the server runs, there is no graphics, and it prints everything out using ...
0
votes
2answers
57 views

Scanner not working

I have this code: byte[] nombre = new byte[20]; System.out.print("Cuenta a modificar: "); cuenta = s.nextInt(); boolean existe = estaRepetido(cuenta); ...
4
votes
3answers
256 views

Mac OSX Java Terminal version incorrect

Ok, I'm a bit new to Macs and OSX, but I picked one up so that I can do some troubleshooting on my Java programs with one since the company I work for uses a combination of OSX and Windows machines. ...
0
votes
1answer
48 views

How to display an SVG image after executing a script through the command console/terminal?

I'm writing an application that will convert .txt script files into .svg image files. It's written in Java (Python would probably be better, but I work with the tools I have), executes over the ...
0
votes
2answers
54 views

Array of string in Process in java has space in a parameter

I write some java code in order to execute some external commands in the mac terminal. The original command to run in the terminal is xpl-sender -c plugwise.basic -m xpl-cmnd command=livepower ...
1
vote
1answer
207 views

Open a new terminal window and execute command in it by java without using bash script

For examples, this is my bash script osascript -e 'tell app "Terminal" do script "./process1" end tell' osascript -e 'tell app "Terminal" do script "./process2" end tell' Basically, it will ...
0
votes
0answers
50 views

Start processes in different terminasl from Java

I have two listener processes, which can be started in the terminal as ./listener1 and ./listener2. Note that they will need to be ran in different terminals..those processes will run and wait for ...
0
votes
1answer
214 views

Chinese Characters Displayed as Questions Marks in Mac Terminal

I am trying to retrieve some UTF-8 unicoded Chinese characters from a database using a Java file. When I do this the characters are returned as question marks. However, when I display the characters ...
1
vote
1answer
58 views

Can't access .png files in Terminal from Java Project

Let me know if you need more code than this! I can run the program perfectly fine in Eclipse. But once I access the files and run java Frame in Terminal, it only shows part of my game. It doesn't ...
1
vote
2answers
54 views

java in terminal not completing

I have a java HelloWorld equivalent: public class HelloWorld { public static void main (String[] args) { System.out.println("Hello World!"); } } I compile ...
0
votes
1answer
131 views

Open file Office doc on a url through command line (Mac)

I am trying to build a Java applet that will automatically load an Office file from a url and open it with the right desktop application on Mac Os. For the moment, I am looking for the command line ...
2
votes
3answers
226 views

how to run a command at terminal from java program?

I need to run a command at terminal in Fedora 16 from a JAVA program. I tried using Runtime.getRuntime().exec("xterm"); but this just opens the terminal, i am unable to execute any command. I ...
1
vote
2answers
682 views

Install Java on MAC OSX 10.8.2 Error calling: CFMessagePortCreateRemote

Hello I am trying to install Java on my mac with osx 10.8.2. If I am typing java -version in the terminal, I get the following error: No Java runtime present, requesting install. 2013-03-08 ...
0
votes
3answers
241 views

How do I kill this tomcat process in Terminal?

Using "ps -ef | grep tomcat" I found a tomcat server that is running. I tried "kill -9 {id}" but it returns "No such process." What am I doing wrong? Here's an example: ...
1
vote
3answers
136 views

Can you run a Java program in Linux using the name only, without the “java” command?

If I am writing HelloWorld, is there a way I can run the program from any directory by just typing HelloWorld? Sort of the same way once you set up Ant, you can just run Ant from any directory? Just ...
0
votes
2answers
106 views

java program runs in eclipse but not in the terminal [duplicate]

I can run following code in Eclipse without any problem: import java.applet.Applet; import java.awt.Color; import java.awt.Graphics; public class Rect extends Applet { public void paint(Graphics ...
1
vote
2answers
131 views

Clean with eclipse but cannot compile Helloworld in terminal (Error: Could not find or load main class)

I'm trying to compile in the terminal (Fedora) my package I've written in eclipse. I need to turn these .java's into my teach for homework but after I compile them in a .class file they will not ...
2
votes
1answer
111 views

The easiest way to run java class when editing the .java file form VIM

If I'm coding in cpp, in Vim I can do: !g++ % && ./a.out to quickly compile and run the code. However, if I'm coding in Java, in Vim I can do: !javac % for a quick compilation, but for ...
1
vote
1answer
145 views

Get output of terminal command using Java

For some terminal commands, they repeatedly output. For example, for something that's generating a file, it may output the percent that it is complete. I know how to call terminal commands in Java ...
0
votes
1answer
203 views

Java on OS X: Runtime.exec minecraft.jar doing nothing

I am writing a program that, as a side feature, launches Minecraft. Currently, the following runs fine on Windows: String osSeparator = ";"; String osSeparatorLast = ";"; ...
1
vote
3answers
130 views

Can't run java in bashscript

I am trying to write a bash script that simply compiles a java file then runs it #!/bin/bash read name javac $name $name | sed -r "s/.java//" | java but instead of running the java file, it opens ...
1
vote
2answers
2k views

Launch Minecraft from command line - usename and password as prefix

I'm trying to make a simple custom Minecraft launcher thing. According to minecraft wiki's Launcher page: http://www.minecraftwiki.net/wiki/Minecraft_launcher, it should be possible to run the ...
1
vote
2answers
182 views

Run java app created in eclipse package structure in ubuntu terminal

I am sure this is a very newbie question, but writing Java app after years. I have written a simple java code to print "HelloWorld" public static void main(String[] args) { // TODO Auto-generated ...
2
votes
0answers
79 views

Writing data to screen twice instead of once

I am connecting to a terminal emulator using a library in android, this connects to a serial device (a switch) and shows me sent/received data. I send data over serial using another library. I send ...
0
votes
1answer
80 views

Sending input to stdin and getting the full output in Java - Festival TTS

I'm trying to use the Java Runtime.getRuntime().exec(String) command to run Festival, then use OutputStreamWriter to write some commands to the outpustream of the process. This works great, and I'm ...
0
votes
0answers
106 views

place editText below component in relativeLayout, but component fills screen?

I have a linearLayout, inside which is a relativeLayout, in the relativeLayout to want to place an EditText field below a terminal emulator view. However when I do so nothing appears? i assume it is ...
2
votes
1answer
238 views

Call terminal and run command through Java App

I'm using the followig code to run a command from my Java App: String cmd[] = {"sh","-c", "sudo chmod 777 -R " + path}; Terminal.runCommand(cmd); I'd like to execute the .jar just by click in it ...

1 2 3 4 5