The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
58 views

Do strings used in a System.out.println also create new immutable objects?

So I'm studying for the SCJP from the Kathy Sierra book. In the chapter for strings, this is a question: String s1 = "spring "; String s2 = s1 + "summer "; s1.concat( "fall "); s2.concat(s1); s1 += ...
-1
votes
7answers
56 views

Does the System.out object belong to class System or class PrintStream? [closed]

I'm new to programming and I just started learning Java. I'm curious that does the object System.out belong to class System or class PrintStream? I referred to a textbook, JAVA CONCEPTS 4/e. The ...
0
votes
1answer
8 views

log4j 1.2.15 and redirection of System.out and System.err

In a Java/Swing application we redirected System.out and System.err to a separate view (called "SystemOutView") which pops open when a new output occurs. This works fine for thrown exceptions and ...
-1
votes
2answers
55 views

Print in Java Char array as binary

I've a char array static char[] myArray ={ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x48, 0x48, 0x48, 0xb0, 0x00, 0xc0, 0x20, 0x20, 0x20, 0xc0, 0x00, 0xc0, 0x20, 0x20, 0x20, 0xc0, ...
0
votes
1answer
55 views

Java code needs a system.out.println statement to run

I wanted to know if anyone else experienced this problem. This one portion of code in my game relies on a system.out.println statement to work. without it, it won't function properly while(isladder){ ...
1
vote
4answers
58 views

System.out.err & System.out interleaving in Java

To work out how much time is taken to perform an algorithm, I do this in the main method, but it does not print the time as it gets interleaved with System.print. long startTime = ...
0
votes
2answers
74 views

Java make rows and columns

Building a rectangular with character input and specified column and rows. whitespace in the middle. using standard input for string s, int r, int c private static void printstuff(String s, int ...
1
vote
1answer
41 views

capturing error message and to display in console (IDE)

I am running a c++ program (makefile) as a background process using Processbuilder from my java Program. I am capturing the values displayed in my cmd prompt using .getInputStream and displaying in my ...
2
votes
7answers
94 views

converting true to yes?

the method printDetails its prints out yes if the airCon field airCon is true,But I think this is not the perfect way of doing it, so is there any other way of doing it thanks public class Auto { ...
-5
votes
1answer
80 views

format the float output of an array element in java

This is a homework assignment with the following requirements: Write program that use 2 arrays one for names of 5 candidates the other for votes received by the candidate. Program should output ...
-1
votes
1answer
92 views

My .jar file is not executing [closed]

I have created a basic Noughts and Crosses game where it takes text input from the user to determine where the X/O will be placed (everything is printed on-screen using System.out) and it works fine ...
6
votes
3answers
103 views

Race between System.out and System.err in java [duplicate]

Please consider this java code: public class CMain { public static void main(String[] args){ for (int i = 0; i < 10; i++) { System.out.println("A"); ...
2
votes
2answers
81 views

Java: How to output two words in the same string onto separate lines?

I am trying to enter the first and last name in one string and then display the first and last name on separate lines. I thought the nextLine(); command would work but is not displaying the first and ...
0
votes
1answer
126 views

Keyword highlighting issues in Java (using System.out)

I have been modifying a simple Java Swing console, and I decided to add a form of highlighting for keywords (by coloring the area next to flagged lines). I got it to work fine when I throw errors by ...
1
vote
4answers
64 views

Java - Unable to add text

I've been practicing a bit of Java lately. I've made a random keyboard in one class and another class called form. I managed to add in the keyboard method from another class. But when I tried to add ...
0
votes
4answers
72 views

How to print an already formatted String in Java

I have a paragraph which has been indented already. for example Hello: Hi every body Now I want to print this in Java. using System.out.println I have to put this function in each line. How ...
3
votes
2answers
91 views

Java - Mac/Windows with System.out.println()

We all mostly use System.out.println in the Console of our IDE. I am using Eclipse. I can also clearly see the println() message on my Mac's Console app. Which is nice for my personal things. And ...
3
votes
3answers
120 views

what the type of System.out in java

I am just a newbie in Java. I was wondering the way System.out.println() is used. out is a static field inside System class. The type of out is PrintStream. But when I saw the constructor of ...
0
votes
1answer
78 views

JUnit4: Testing System.out in multiple test methods

I have an application where I want to write unit tests to test the output, written to System.out (and perhaps System.err). Each individual test works as expected, however when adding multiple tests in ...
-1
votes
2answers
54 views

regarding explanation of statement System.out.println(); [closed]

i want to know what each term in System.out.println() means?
1
vote
1answer
414 views

Java - Redirecting system.out.println to a JLabel

I want to redirect a sytem.out.println to a JLabel in another class. I have 2 classes, NextPage and Mctrainer. NextPage is basically just a Jframe (The gui for my project), and I have created a ...
0
votes
4answers
99 views

String appended does not show up in System.out.println

I am trying to generate a line of 10000 random number and store it in a file. I go on adding new random numbers to the line separated by spaces. But after few iterations, the appended string becomes ...
0
votes
2answers
214 views

Read and print unicode strings

I'm working on a program that is going to use lots of different languages and characters. For example, I whould need to read a string with the german character ß from a file, and display the string ...
0
votes
2answers
218 views

Remove last character added to System.out

I'm writing a simple Client-Server protocol in java and am dealing with the server CLI right now. What I want to do is have a > at the beginning of the user input line. The function I have that ...
1
vote
6answers
131 views

Conditionally terminate current line before System.out.println

EDIT: Note that the code below is an example to show what I want to do. My real question is, in Raphael Schweikert's words, how (if at all possible) you can inspect previously printed output? In other ...
0
votes
1answer
51 views

Get Logs from another class to set this Text to a TextView

I am using one MainActivity and another .java which includes a class. I want to be able to set the Logs or System.out from my excluded class in a textView inside my MainActivity. For example the ...
2
votes
3answers
254 views

Why does System.out.print cause autoflush?

System.out is a PrintStream object. I read the documentation on PrintStream. What I don't get is why System.out.print causes the buffer to be flushed? Shouldn't that happen only for println?
6
votes
2answers
302 views

Can I talk Java into printing to the console under Mountain Lion?

I'm using the good old System.out.println - approach to debug my Java application. Before I upgraded to Mac OS 10.8 this worked wonderfully. Now however my console wouldn't display anything. ...
0
votes
1answer
193 views

How to display system.out (in console) on ant?

I am able to build java program on ant and it has been configured properly. However i'm wondering how would i see System.out.println / System.out.print on console using Ant ? Note: i haven't used ...
-1
votes
3answers
1k views

What is System, out, println in System.out.println() in Java [duplicate]

Possible Duplicate: What's the meaning of System.out.println in Java? I was looking for the answer of what System, out and println are in System.out.println() in the Java. I searched ...
0
votes
1answer
180 views

Redirecting JSF errors to log file

How can I redirect all the JSF error log messages to a log file? Currently it is being written to a SystemOut.log file. I tried to change the System.out to a custom PrintStream which will write to a ...
1
vote
4answers
361 views

Where System.out writes in a servlet?

I am just curious to know, what happens when System.out.print() is called in a servlet? Where does it write the text? Or is there any significant use of System.out in a servlet?
0
votes
1answer
177 views

Java getting userinput from the user

import java.util.List; import ShortHand.utilities.CollectionCreation; public class MultipleChoice<Q,A,C> { Q question; A answer; C choices; public MultipleChoice(Q q, A a, C ...
-2
votes
1answer
529 views

java difference StdOut vs System.out.println [closed]

I have just started working on java, As i downloaded the eclipse and created a java project. Project was working fine, then i imported a class but it's not working due to following lines ...
0
votes
1answer
92 views

How do I replace typed text in a console when something is printed there?

I am reading and writing from console created by running my application from a batch file. I am creating a small servlet and I am running into the problem that while I am typing, things are printed ...
0
votes
1answer
107 views

Maven Configuration so that build fails if System.out.println in code

We want to remove all system.out.println from the project. How to configure the pom or what are the dependencies which are required for the same. Thanks, Anil
0
votes
1answer
256 views

Java: Intercepting and parsing Logger or console output without disturbing it

I am having some trouble with Java. What I want is pretty simple, I am developing a plugin for a mod of a well-known game, Minecraft, and I need to be able to parse every line of console output that ...
3
votes
2answers
161 views

sending System.out over socket

How do I send output from System.out to socket e.g. PrintWriter? I need to send whatever appears on the console output (both std and err) to PrintWriter, thus a socket. Thank you.
0
votes
2answers
111 views

Need redirecting output from multi-threaded socket server to other clients.

What I have is a multi threaded socket server listening for clients. New thread is created and started for opened connections. Clients can ask a server to execute some commands via Runtime .exec() ...
0
votes
0answers
87 views

GUI to show system in and out from command line. [Beginner]

I am new to Java and would love some assistance. I decided for my first attempt at a Java application I want a simple GUI that asks questions from the system, and waits for a response from a user. ...
1
vote
4answers
127 views

Java redirect the sysout of a class in a jar

I would like to redirect/hide the sysout generated by the following code : Tools tool = new ToolsImpl(); HashCode hash = tool.computeHashCodes(dir); The difficult part is : the method ...
-2
votes
3answers
262 views

Program will not execute unless using System.out.println()

public class Main { public static void main(String[] args) { GUI gui = new GUI(); GameHandler gameHandler = new GameHandler(); while (!gui.shouldStop()) { ...
0
votes
1answer
986 views

Displaying seconds in 3 decimal places. - java

I am using milliseconds in my java program and converting it to seconds. After my method does this, it returns seconds in a long format. System.out.println("[" + threadID + "]" + " " + "SeqSum res=" ...
0
votes
4answers
198 views

Java Error Catching Issue

I have a try/catch thing set up where it will catch all exceptions and then display the error. Here is my code: try { //CODE THAT COULD ERROR HERE } catch (final Exception e) { ...
1
vote
1answer
477 views

Using Java API in Android

I'm trying to run this API java in Android. Because there is no terminal in Android, System.out.println and e.printStackTrace not compile and I've tried to replace it in the CartoDBClient and ...
0
votes
5answers
324 views

How can I print line side by side in Java?

I couldn't find this anywhere; I might finding it with the wrong keywords. Pictures paint a thousand words, so let me explain. Supposed we have a set of unknown number of String: String hello = ...
2
votes
2answers
946 views

Why is System.out.print() not working?

So I'm in the thick of coding what I though would be a relatively simple "read file" program. I am getting LOTS of compile errors, so I started just trying to compile one line at a time to see where I ...
0
votes
2answers
261 views

Redirecting stdout to swt.

Display disp = Display.getCurrent(); disp.asyncExec(new Runnable() { public void run(){ try { PipedOutputStream pos = new PipedOutputStream(); ...
-1
votes
2answers
166 views

checking java predefined methods

I'm just wondering on how would you check java codes like System.Out.println("hi"); it should check if the syntax is correct. I've used a java template in ANTLR, but I'm not quite sure that ANTLR ...
3
votes
2answers
74 views

Strange output when running a loop

Can anyone tell me why I always have this strange output after running this loop? Is this a threading issue or what? for(int i=0;i<10;i++){ System.out.println("out: "+i); ...

1 2