Reverse line feed in Windows / Java
Is there a way to write several lines to the system console in Windows, then delete or modify them, using Java? I can write over the same line more than once using the \r carriage return character....
View ArticleHow to get carriage return without line feed effect in Eclipse console?
If I System.out.print("something\r"); at console, I have cursor back at the beginning of line, and finally after System.out.print("something\r"); System.out.print(" any\r"); I have anything typed. But...
View ArticleC - fgets skips CR character
I have a c code, simply reads a line from a txt file. The file has only one line which is as below: The code snippet to read this line is: int** readFile(char* filename){ int col=0, row =0; int i=0;...
View ArticleRead binary data from QProcess in Windows
I have some .exe file (say some.exe) that writes to the standard output binary data. I have no sources of this program. I need to run some.exe from my C++/Qt application and read standard output of...
View Article