感谢您抽出宝贵时间帮助我。
我对"非静态有问题..."错误,我不知道为什么。这是代码
/Users/username/Library/Developer/Titanium/android-sdk-macosx/build-tools
(这只是代码的一部分。我知道这会在释义时结束)
另一堂课:
public class Klient {
public static String output = "test";
public static void main(String[] args) throws Exception {
Socket socket = new Socket("localhost", 9898);
PrintStream PS = new PrintStream(socket.getOutputStream());
InputStreamReader IR = new InputStreamReader(socket.getInputStream());
BufferedReader BR = new BufferedReader(IR);
int i;
for (i = 0; i < 3; i++) {
output = BR.readLine();
Server2.setTekst(output);
}
同样,这也只是代码的一部分。我非常感谢你的帮助:)。
答案 0 :(得分:1)
将此方法设为静态
{{1}}