Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
1answer
315 views

println vs System.out.println in Scala

I always thought that Predef.println was merely a shortcut for System.out.println, but apparently I am mistaken, since it doesn't seem to use System.out at all. Why is that so? And how can I do the ...
5
votes
9answers
629 views

Should I use System.out.println() or something else?

I've been casually programming in Java for a while, but I still have a few burning questions on the fundamentals. I've heard that I should use System.out.println() to display data from some people, ...
3
votes
4answers
121 views

How do I print a list of numbers on each line in clojure?

how can I print a list of n, say 10, numbers on 10 lines? I just learned about loop and recur, but cannot seem to combine a side-effect (println i) with (recur (+ i 1)) in a loop form. Just to be very ...
3
votes
5answers
2k views

Print in new line, java

I have following code : System.out.println(" | 1 2 3 4 5 6 7 8 9"); System.out.println("----------------------------"); System.out.println(""); I use println to create a new ...
2
votes
2answers
56 views

How to print a String in multiline Output Java

First of all I'd like to state that, despite the title, this question is not a duplicate of the one I found here: Java multiline string. I read with attention all answers to that question and couldn't ...
2
votes
5answers
95 views

Java - How to create a println/print method for a custom class

I'm working in Java on a project that requires me to make a few 'container' classes, if you will. Here is a simple version of one: public class Pair{ Object KEY; Object VALUE; public ...
2
votes
3answers
153 views

println in scala for-comprehension

In a for-comprehension, I can't just put a print statement: def prod (m: Int) = { for (a <- 2 to m/(2*3); print (a + " "); b <- (a+1) to m/a; c = (a*b) if (c < m)) yield ...
2
votes
6answers
724 views

System.out.println not functioning

What are some scenarios in which java's System.out.println would fail to produce any output. I have a call to it inside of a method and sometimes when the method is called I get the println and ...
2
votes
2answers
5k views

Is there a way to print to the console in an Android app?

Can I run an Android app through the emulator and make it print strings to my computer's console? By console I mean the standard place you would expect to see a System.out.println() in a normal java ...
2
votes
2answers
591 views

Scala println in a for loop

The following Scala code does just what I expect it to - it prints each line of some_file.txt. import scala.io.Source val lines = Source.fromPath("some_file.txt").mkString for (line <- lines) ...
1
vote
6answers
95 views

Character limit for System.out.println() in Java

Is there any character limit for the output of Java's System.out.println(String x) statement? When I try to print some XML from a web service call using System.out.println(), only a portion of it is ...
1
vote
6answers
115 views

What is the equivalent of Java's System.out.println() in Javascript?

I am writing some tests for Javascript code and I need to dump some messages during the compile process when errors are encountered. Is there any equivalent to Java's System.out.println() in ...
1
vote
4answers
71 views

Printing a " in a Java String [closed]

Possible Duplicate: How do I make a string with a " character in it? (Java) I am having trouble printing a string like this in java System.out.println("this is a "test""); How can I go ...
1
vote
3answers
45 views

Strange java print output

I am new to Java and was working with simple printing. First, I executed: System.out.println(1 + 2 + "3"); Output:33 I made up logic that 1 and 2 will be added and 3 will be printed as is. Then, ...
1
vote
1answer
61 views

understanding issue - System.out.println

I'm new to programming and started out with Java today. I'm reading the online version of 'Introduction to programming in Java' by Robert Sedgewick and Kevin Wayne and using the DrJava editor. There ...
1
vote
1answer
101 views

NullPointerException clojure println

I'm learning clojure and I found a problem in this very ugly, anti-idiomatic, stupid code that I wrote: (ns music-tag.core (:import (java.io.File) (com.echonest.api.v4.EchoNestAPI) ...
1
vote
4answers
98 views

Division of integers in Java

This is a ridiculous question but I can't find an answer. Have looked into floating point arithmetic and a few other topics but nothing has seemed to address this. I'm sure I just have the wrong ...
1
vote
2answers
76 views

anyway to rearrange a arraylist and remove printline

Hi I have to write a program that takes in number of candidate and how many votes they got from the best to the worst. And I wrote two different classes to do that using a fileInputStream and another ...
1
vote
4answers
241 views

Capturing contents of standard output in Java

I am invoking a function that is printing some string in my console/standard output. I need to capture this string. I cannot modify the function that is doing the printing, nor change runtime behavior ...
1
vote
3answers
127 views

Printing variable values in Java

I've got an object which is a new MimeMessage called message and I want to find out what it's passing to my outgoing mail server. I however have no idea how one gets a variable like this printed out ...
1
vote
2answers
426 views

Remove blank lines that appear when writing to file (Java)

I have created a program which takes a text file full of 3 letter words and processes them, stores them in an array and then outputs to the build output in JCreator and then writes the same output to ...
1
vote
3answers
620 views

Can I have IO exception when I create a server socket in Java?

I have the following code: Socket clientSocket = null; try { clientSocket = serverSocket.accept(); } catch (IOException e) { System.err.println("Accept failed."); System.exit(1); } The ...
1
vote
2answers
3k views

Where does system.out.println print from a JSP?

Where does tomcat put the System.out.println output ? I'm not interested in out.println. I'm using a system that uses system.out to log issues, like login success/fail, and I need to look to that ...
1
vote
2answers
116 views

Scala extra parentheses printout

I wrote my first sample scala program and it looks like this: def main(args: Array[String]) { def f1 = println("aprintln") println("applying f1") println((f1 _).apply) println("done ...
0
votes
1answer
59 views

Grails: println only works sometimes or something

I make a brand new grails project and put this in the bootstrap: ExpandoMetaClass.enableGlobally() Integer.metaClass.precision = {->return 1} println 3.precision() println "rofl" println ...
0
votes
1answer
58 views

Is there a way to override the default object printing

I am trying to print an class in scala. Defined below: class Player(balance : Int, player_num :Int ){ var curHand = new ArrayBuffer[Int]() var sum = 0 def method1()={ .... } ...
0
votes
0answers
21 views

SOLVED Try to add notification to Android Harish CurlPage for stop and go to other activity

First that all thanks to Harish for your awesome work!!! Second, sorry for my english. Ok, that I try is show a first screen on Android with a curlpage effect. When the first page are flipped, the ...
0
votes
1answer
24 views

A program that will let the user input a string and then output each letter on a new line

import java.util.Scanner; public class Program3_5 { public static void main (String[]args) { Scanner scan = new Scanner(System.in); String input = new String(); ...
0
votes
1answer
44 views

Printing multiple HTML lines from JSP

out.println(%><form> + <p><label for="username">Username:</label><input type="text" name="username" /></p> + <p><label ...
0
votes
3answers
410 views

Show System.out.println output with another color

I have a big project to debug, and I was wondering if there is anyway I could use to change the System.out.println method in the output of eclipse for example : System.out.println("I want this to be ...
0
votes
2answers
64 views

println a sentence once in Processing

I'm wondering how to println a sentence ONCE in Processing. when I type println("Hello World!"); it just shows lots of Hello World! sentences. I know how to fix it with keyPressed (when the key is ...
0
votes
4answers
222 views

Java println: Windows vs Linux

I have a java program that writes a file to a remote machine file system using the jcifs library -samba stuff; SmbFile=>SmbFileOutputStream=>PrintStream and the I use the common println(String). ...
0
votes
1answer
106 views

In-Place Update for print()-Function

basically I want to do the following: let's say I have two methods: def printA(i: Int){ print("Value A: " + i) } def printB(j: Int){ print("Value B: " + j) } Now - for example - I use this ...
0
votes
9answers
75 views

println not happening when called from a decision statement within a method (in Java)

I have come across a somewhat annoying problem during a project. I created this sample class to describe the issue which I am having. public class Test { public static void Testing(){ for ...
0
votes
1answer
100 views

new class with method toString()

This is related to an earlier question I asked. I'm adding a toString() method to a class. The class creates an arbitrarily long natural number using a stack of integer. I'm only incrementing and ...
0
votes
5answers
115 views

Reading from variables that are located in a private method

I am having a small problem I am trying to print the contents of a couple of variables which are located in a a private method. but I simply keep getting 'Can Not Find Symbol' Below is the code that ...
0
votes
2answers
252 views

read ArrayList elements

Why it print the wrong output? ArrayList<String> loc = new ArrayList<String>(); This arraylist stored the value of: [topLeft, topLeft, topLeft, bottomLeft, topLeft, bottomLeft, ...
0
votes
5answers
464 views

Java: system.out.println concatenating something within a string (really easy question)

I want my output to be Candy[1]. counterInt = 1 But my compiler isn't taking this code: System.out.println("Candy["+counterInt"]"); What can I do to have this variable appear within the string ...
0
votes
4answers
156 views

Java - Is it possible to print text that can be edited by the user (for console programs)

Say I allow the user to edit something, like the phone number in an Address Book (actually, that's exactly what I'm doing). Is there something that I can add to println that will allow me to insert a ...
-1
votes
7answers
286 views

Why won't this println command start a new line?

Here's the relevant code: public static void printBoarders (Territory x) { int t = 0 ; int n = 0 ; for (int i = 0; i<x.borders.length; i++) { if (x.borders[i] == -1) ...