想法是开始聊天。所以我在班上有这个属性:
private MulticastSocket so;
private EditText messageBoard;
private InetAddress serverAddress;
private int port;
然后我在onCreate()
方法中使用了这段代码:
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.second);
// connect to server
connect();
// Associate a variable with the Button on the interface
final Button sendButton = (Button) findViewById(R.id.button2);
sendButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// when the button is clicked the next screen is loaded
sendMessage();
}
});
} // end of onCreate
这是我的connect()
方法:
private void connect() {
port = 4456;
// convert the host name to InetAddress
try {
serverAddress = InetAddress.getByName("my server address is here");
} catch (Exception e) {}
// create socket and start communicating
try {
so = new MulticastSocket(port);
so.joinGroup(serverAddress);
} catch (IOException e) {}
// start listening for incoming messages
new Receiver(so, messageBoard);
}
一切看起来都对我不错,但这就是它所说的:
01-24 23:33:16.277: W/dalvikvm(569): threadid=1: thread exiting with uncaught exception (group=0x409c01f8)
01-24 23:33:16.357: E/AndroidRuntime(569): FATAL EXCEPTION: main
01-24 23:33:16.357: E/AndroidRuntime(569): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.regeduser00x.proj1/com.regeduser00x.proj1.Second}: android.os.NetworkOnMainThreadException
01-24 23:33:16.357: E/AndroidRuntime(569): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1956)
01-24 23:33:16.357: E/AndroidRuntime(569): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1981)
01-24 23:33:16.357: E/AndroidRuntime(569): at android.app.ActivityThread.access$600(ActivityThread.java:123)
01-24 23:33:16.357: E/AndroidRuntime(569): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1147)
01-24 23:33:16.357: E/AndroidRuntime(569): at android.os.Handler.dispatchMessage(Handler.java:99)
01-24 23:33:16.357: E/AndroidRuntime(569): at android.os.Looper.loop(Looper.java:137)
01-24 23:33:16.357: E/AndroidRuntime(569): at android.app.ActivityThread.main(ActivityThread.java:4424)
01-24 23:33:16.357: E/AndroidRuntime(569): at java.lang.reflect.Method.invokeNative(Native Method)
01-24 23:33:16.357: E/AndroidRuntime(569): at java.lang.reflect.Method.invoke(Method.java:511)
01-24 23:33:16.357: E/AndroidRuntime(569): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
01-24 23:33:16.357: E/AndroidRuntime(569): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
01-24 23:33:16.357: E/AndroidRuntime(569): at dalvik.system.NativeStart.main(Native Method)
01-24 23:33:16.357: E/AndroidRuntime(569): Caused by: android.os.NetworkOnMainThreadException
01-24 23:33:16.357: E/AndroidRuntime(569): at android.os.StrictMode$AndroidBlockGuardPolicy.onNetwork(StrictMode.java:1099)
01-24 23:33:16.357: E/AndroidRuntime(569): at java.net.InetAddress.lookupHostByName(InetAddress.java:391)
01-24 23:33:16.357: E/AndroidRuntime(569): at java.net.InetAddress.getAllByNameImpl(InetAddress.java:242)
01-24 23:33:16.357: E/AndroidRuntime(569): at java.net.InetAddress.getByName(InetAddress.java:295)
01-24 23:33:16.357: E/AndroidRuntime(569): at com.regeduser00x.proj1.Second.connect(Second.java:99)
01-24 23:33:16.357: E/AndroidRuntime(569): at com.regeduser00x.proj1.Second.onCreate(Second.java:38)
01-24 23:33:16.357: E/AndroidRuntime(569): at android.app.Activity.performCreate(Activity.java:4465)
01-24 23:33:16.357: E/AndroidRuntime(569): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1049)
01-24 23:33:16.357: E/AndroidRuntime(569): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1920)
01-24 23:33:16.357: E/AndroidRuntime(569): ... 11 more
Second.java:99
恰好是serverAddress = InetAddress.getByName("my server address is here");
而第38行恰好是connect();
有什么问题呢?我已经在一个小型测试程序中使用InetAddress对该行进行了测试,并且它运行良好,但这里发生了一些事情。
答案 0 :(得分:9)
这一行:
Caused by: android.os.NetworkOnMainThreadException
告诉你发生了什么。
您正在尝试访问Main(UI)线程上的网络功能。从Honeycomb开始,系统会在您执行此操作时引发异常。
要解决此问题,只需将触及网络的任何内容移动到自己的线程即可。
答案 1 :(得分:1)
这样做是为了确保您不会阻止UI线程处理来自用户的任何输入事件。通过阻止UI线程,您的应用程序无法执行任何事件处理例程。
通常大多数UI系统都有一个看门狗定时器,它会一直监视UI线程上的任何长时间操作,以及UI线程是否被阻止超过阈值(在Android设备中可能需要10-20秒,因制造商/操作系统版本而异) )看门狗中断并导致弹出“应用程序无响应”(又名ANR)。
答案 2 :(得分:1)
如果您只想轻松解决此问题,请指定Froyo或Gingerbread的最低SDK版本并省略targetSdkVersion:
android:minSdkVersion="8"