This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 63553

Summary: Writing to Output Window without terminating the line
Product: platform Reporter: clover <clover>
Component: Output WindowAssignee: Milos Kleint <mkleint>
Status: RESOLVED FIXED    
Severity: blocker    
Priority: P4    
Version: 4.x   
Hardware: All   
OS: Windows XP   
Issue Type: DEFECT Exception Reporter:

Description clover 2005-09-02 09:17:12 UTC
I want to write to output tab, but I can't do it one line for one print. I 
tried to do something like this:
 
InputOutput io = IOProvider.getDefault().getIO("aaaa", false);
io.getOut().print("a");
io.getOut().print("b");
 
Since I used print, in the output tab I hoped to see:
ab
 
but, instead it is:
a
b
Comment 1 Milos Kleint 2005-09-05 07:18:59 UTC
this should be working in current trunk already. Any print(), or write() method
should result in non complete line.