Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Continuing my post for finding the print service application, I'm really interested in java4less(textprinter). How do I to print one string object with multiple line inside, let's say the string name is out:

AID                     :   000922
A/C Number              :   XXXXXXXXX
A/C Name & Address      :   REKENING ANTARA SHB DGN TOP UP

Is it possible for using some function to put it once? Without I must set it manually:

printer.printString ("AID                     :   000922");
printer.newLine();
printer.printString ("A/C Number              :   XXXXXXXXX");
printer.newLine();
share|improve this question
1  
PS: Instead of bolding code, indent it 4 spaces (select it and click the 1010 icon) – Mark Dec 31 '09 at 2:36

1 Answer

Try

printer.printString ("AID : 000922\nA/C Number : XXXXXXXXX\n");

The \n at the end should print a newline.

share|improve this answer
mark, I put this AID : 000922 \n A/C Number : XXXXXXXXX \n A/C Name & Address : REKENING ANTARA SHB DGN TOP UP \n in one string object called "out", including \n, so the object will be shown like above. but when I put that object like this printString(out); I cannot get the desired printing, only first line will be printed. – Mr.K Dec 31 '09 at 3:09
Hrm... then I dunno. \n is the newline character, but I guess textprinter doesnt know how to wrap it properly, so it just cuts ot off. Sorry for the useless post, I have no idea. – Mark Dec 31 '09 at 3:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.