Display of program output in text pad

Using the Java SDK with TextPad

Moderators: AmigoJack, bbadmin, helios, Bob Hansen, MudGuard

Post Reply
Dunski1
Posts: 1
Joined: Tue Apr 21, 2009 11:50 am

Display of program output in text pad

Post by Dunski1 »

How do I dispaly output of my program in textpad. For example -

class HelloWorld {
public static void main(String[] args)
{
System.out.println("Hello World!");
}
}

It compiles Tool completed successfully

But If Run a window shows with
Command =\Program Files\Java\jdk1.6.0_07\bin\javac.exe
Parameters =
Initial Foledr =

Cature output chec is checked

When run command resuts window displays thefollowing and not
Hello World! as expected.

Is there a setting so that I can display Hello World! in textpad??

Usage: javac <options> <source files>
where possible options include:
-g Generate all debugging info
-g:none Generate no debugging info
-g:{lines,vars,source} Generate only some debugging info
-nowarn Generate no warnings
-verbose Output messages about what the compiler is doing
-deprecation Output source locations where deprecated APIs are used
-classpath <path> Specify where to find user class files and annotation processors
-cp <path> Specify where to find user class files and annotation processors
-sourcepath <path> Specify where to find input source files
-bootclasspath <path> Override location of bootstrap class files
-extdirs <dirs> Override location of installed extensions
-endorseddirs <dirs> Override location of endorsed standards path
-proc:{none,only} Control whether annotation processing and/or compilation is done.
-processor <class1>[,<class2>,<class3>...]Names of the annotation processors to run; bypasses default discovery process
-processorpath <path> Specify where to find annotation processors
-d <directory> Specify where to place generated class files
-s <directory> Specify where to place generated source files
-implicit:{none,class} Specify whether or not to generate class files for implicitly referenced files
-encoding <encoding> Specify character encoding used by source files
-source <release> Provide source compatibility with specified release
-target <release> Generate class files for specific VM version
-version Version information
-help Print a synopsis of standard options
-Akey[=value] Options to pass to annotation processors
-X Print a synopsis of nonstandard options
-J<flag> Pass <flag> directly to the runtime system
User avatar
talleyrand
Posts: 624
Joined: Mon Jul 21, 2003 6:56 pm
Location: Kansas City, MO, USA
Contact:

Post by talleyrand »

javac compiles .java files
java runs .class files (or jars)

It looks like your run tool may not be set up appropriately
I choose to fight with a sack of angry cats.
franed
Posts: 2
Joined: Mon Sep 14, 2009 7:58 pm

Compiling java programs

Post by franed »

I am having the same problem.............Can't get the output afte successfully compiling my programs?
Yencanwasu
Posts: 4
Joined: Thu Sep 17, 2009 11:24 pm

Answer

Post by Yencanwasu »

http://forums.textpad.com/viewtopic.php?t=10233
Here i posted some info that will answer your question.
Post Reply