所以我的目标是在OutputStream类中实现write方法来创建一个新类NumStream,它基本上将int转换为字符串。这是我的示例代码:
import java.io.*;
public class NumStream extends OutputStream {
public void write(int c) throws IOException {
// What goes here?
}
public static void main(String[] args) {
NumStream ns = new NumStream();
PrintWriter pw = new PrintWriter(new OutputStreamWriter(ns));
pw.println("123456789 and ! and # ");
pw.flush(); // needed for anything to happen, try taking it out
}
}
我尝试过使用几种不同的方法,我的结果总是导致程序编译,但是当我运行它时,没有任何反应。到目前为止,我已经尝试使用switch语句来产生这个结果:
public void write(int c) throws IOException {
StringBuffer sb = new StringBuffer();
switch (c) {
case 1: sb.append("1");
break;
//etc. through 9
我不确定该做什么或尝试下一步产生结果。 :/任何引导我朝正确方向前进的技巧?
答案 0 :(得分:1)
我也有同样的问题,这是解决方案:
public class MyOutputStream extends OutputStream {
StringBuilder anotatedText;
public MyOutputStream() {
// Custom constructor
}
@Override
public void write(int b) {
int[] bytes = {b};
write(bytes, 0, bytes.length);
}
public void write(int[] bytes, int offset, int length) {
String s = new String(bytes, offset, length);
anotatedText.append(s);
}
public void myPrint() {
System.out.println(anotatedText);
}
}
我们需要做的就是正确实现“写”方法,这在上面的例子中有明确的指示。