Posts Tagged ‘Notepad’

having problems with my intro to programming/java class?

Thursday, October 9th, 2008
java programming
suepooh asked:


I’m on Chapt.2 of my programming class and I am stuck—I have notepad ++ (so the lines are numbered and are easier to read) I’ve checked my path variables and re-checked some other things–but I am to the part where they want you to change the color–in command prompt I keep getting errors–I am typing the change in notepad++ exactly like the book shows–and saving it–then when I go to command prompt to see if it changed it just shows errors–any help would be appreciated–
because it is a college class we are required to use notepad++ and java 4.0-I just need to know if I’m entering something wrong or maybe there is a property or something that I need to change–my path variable is correct–
I am not trying to change the font or color of command prompt—I am trying to do a homework assignment for a java programming class that requires me to use command prompt to change another program
(a program the teacher gave us to load on our computers)

How can I send a java program to others?

Monday, October 6th, 2008
java
undoubtedly0 asked:


Okay, I have a notepad item on my desktop called “Powers_of_i.java” It contains the following code that (in a GUI) simply calculates the values of imaginary numbers. How can I:
A) Run this program without using Eclipse (which I made it with)?
B) Send this program to someone else so they can use it?
Thanks for helping - please try to give me easy step-by-step instructions that I might be able to understand.
Sorry - I forgot to mention that the program is written in Java.

Is anyone there who has experience in java language programming?

Sunday, August 24th, 2008
java programming
Rozidee I asked:


Can someone suggest me software in order to edit and compile java file and where I can download it? It is very useful to me. Except : EditPlus, Ultraedit, otsEditor, notepad, textpad, and i dont want to choose compile using jdk

what tex editor can i use in java progmming? and how can i compile the code?

Friday, August 15th, 2008
java tutorials
pitong asked:



The tutorial said that use tex editor like notepadthen when compile the code in dos prompt it said that cannot recognizewhat do you mean by this.

The code in dos prompt it said that cannot recognizewhat do you mean by this.


Caffeinated Content

How do I load a Microsoft word document or any type of document into a java program?

Saturday, July 26th, 2008
java
mikeduptwo asked:


How do I load a Microsoft word document or any type of document into a java program and be able to replace words and manipulate the document using Java?
What method will I need to add? What method will I need if whatever I am doing is in notepad??

Programming Java in Notepad++?

Wednesday, July 23rd, 2008
java programming
vordanna asked:


I am trying to learn to write Java in Notepad++.
I have chosen Java in the language tab.

When i open an old code written in another program it looks like this…

class Loop{
**public static void main( String args[] ){
****for(int i=0; i<10; i++){
******System.out.print("O");
**}
*}
}

(the "*" represents space, because yahoo seems to remove unnecessary space in front of a sentence automatically.)

But when I write the same code in Notepad it becomes like this...

class Loop{
public static void main( String args[] ){
for(int i=0; i<10; i++){
system.out.print("O");
}
}
}

I was hoping someone would know how to make notepad++ write like in the first example without using "space" more than necessary.

what tex editor can i use in java progmming? and how can i compile the code?

Sunday, July 20th, 2008
java tutorials
pitong asked:



The tutorial said that cannot recognizewhat do you mean by this.


Caffeinated Content

How do I program java without an IDE?

Tuesday, July 15th, 2008
java programming
Gum D asked:


I’m learning how to program java in BlueJ, but I hear that learning java with an IDE is a bad thing and that I will not learn the basics this way. I’d love to program in notepad, but I haven’t a clue on how to program with it. I can type the code but then I don’t know what to do with it. What do I do? What do I save it as? How do I run it? What do I run it with?

Better Java programming software?

Friday, June 27th, 2008
java programming
maddy asked:


I have j2sdk1.4.2_05 version of java. But in this I have to type the source code using notepad and then compile it using command prompt. Can anyone tell me whether there is a java language software that has inbuilt source code editor and compiler like turbo c/c++?

How to set the text file size dynamically from java code while writing to a file using OubjectOutputStream?

Tuesday, June 24th, 2008
java
Dhivya D asked:


I have written some contents into a text file ie to a notepad in java. How can i set size for that file? That is I have to remove the empty space in the notepad after i wrote the contents in it. Bec while printing that text file using dot matrix printer the paper is scrolling till the end of the file. The printer should stop after it reach the end of file. It shoud not scroll the empty paper. Plz help me..