为什么我在Android应用程序中创建TelnetClient时出现错误?

时间:2012-07-10 11:48:39

标签: android telnet

我正在使用日食Juno
并正在为android 2.3.3 api 10级开发

我正在尝试在Android应用程序中创建一个TelnetClient,以便向telnet服务器发送命令。遇到错误后我已经将代码简化为此而无济于事。

My Main.java

package com.vision.hometest;

import org.apache.commons.net.telnet.TelnetClient;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;


public class Main extends Activity implements OnClickListener{
Button b;
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        b = (Button) findViewById(R.id.b);
        b.setOnClickListener(this);
 }



public void onClick(View arg0) {
    // TODO Auto-generated method stub
    TelnetClient tc = new TelnetClient();

}


}

和main.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >



<Button
    android:id="@+id/b"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/textView1"
    android:layout_centerHorizontal="true"
    android:text="Button" />

</RelativeLayout>

我已添加权限

<uses-permission android:name="android.permission.INTERNET"/>
清单中的

我已经下载了commons-net-3.1-bin.zip二进制文件,并将commons-neet-3.1.jar文件添加到android项目构建路径中。

然而,当我扩展它时,我添加了jar 它说

Source attachment:(None)
Javadoc Location:(None)
Native libary location:(None)
Access rules :(No restrictions)

这些是否应该说没有?

然后我编译项目并在模拟器上运行,当按下按钮时,应用程序强制关闭。

这是logcat

07-10 11:18:18.137: E/dalvikvm(618): Could not find class'org.apache.commons.net.telnet.TelnetClient', referenced from method com.vision.hometest.Main.onClick
07-10 11:18:18.169: W/dalvikvm(618): VFY: unable to resolve new-instance 490 (Lorg/apache/commons/net/telnet/TelnetClient;) in Lcom/vision/hometest/Main;
07-10 11:18:18.169: D/dalvikvm(618): VFY: replacing opcode 0x22 at 0x0000
07-10 11:18:18.169: D/dalvikvm(618): VFY: dead code 0x0002-0005 in Lcom/vision/hometest/Main;.onClick (Landroid/view/View;)V
07-10 11:20:19.556: D/AndroidRuntime(618): Shutting down VM
07-10 11:20:19.556: W/dalvikvm(618): threadid=1: thread exiting with uncaught exception (group=0x40015560)
07-10 11:20:19.576: E/AndroidRuntime(618): FATAL EXCEPTION: main
07-10 11:20:19.576: E/AndroidRuntime(618): java.lang.NoClassDefFoundError: org.apache.commons.net.telnet.TelnetClient
07-10 11:20:19.576: E/AndroidRuntime(618):  at com.vision.hometest.Main.onClick(Main.java:28)
07-10 11:20:19.576: E/AndroidRuntime(618):  at android.view.View.performClick(View.java:2485)
07-10 11:20:19.576: E/AndroidRuntime(618):  at android.view.View$PerformClick.run(View.java:9080)
07-10 11:20:19.576: E/AndroidRuntime(618):  at android.os.Handler.handleCallback(Handler.java:587)
07-10 11:20:19.576: E/AndroidRuntime(618):  at android.os.Handler.dispatchMessage(Handler.java:92)
07-10 11:20:19.576: E/AndroidRuntime(618):  at android.os.Looper.loop(Looper.java:123)
07-10 11:20:19.576: E/AndroidRuntime(618):  at android.app.ActivityThread.main(ActivityThread.java:3683)
07-10 11:20:19.576: E/AndroidRuntime(618):  at java.lang.reflect.Method.invokeNative(Native Method)
07-10 11:20:19.576: E/AndroidRuntime(618):  at java.lang.reflect.Method.invoke(Method.java:507)
07-10 11:20:19.576: E/AndroidRuntime(618):  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
07-10 11:20:19.576: E/AndroidRuntime(618):  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
07-10 11:20:19.576: E/AndroidRuntime(618):  at dalvik.system.NativeStart.main(Native Method)
07-10 11:20:22.036: I/Process(618): Sending signal. PID: 618 SIG: 9
  • 最后

    当我将programe创建为普通的java应用程序时,它可以很好地工作。

我没有做正确的事情或者我错过了一些事情。 如果有人能帮助我,请提前感谢

2 个答案:

答案 0 :(得分:1)

您没有在构建路径中包含Apache Commons Net库。您需要通过从http://commons.apache.org/net/download_net.cgi下载库来包含库,然后在Eclipse中右键单击您的项目,Build Path - &gt;配置Build Path,然后单击“Libraries”选项卡,然后单击“Add External JAR”,然后导航到您下载的commons-net的jar文件。

答案 1 :(得分:0)

几周前我创建了几乎相同的代码并遇到了同样的问题。 Android在创建“TelnetClient tc = new TelnetClient();”时会崩溃宾语。我也发现它在Java中完美运行,但在Android上它会立即崩溃。

显然Apache Commons telnet存在某种问题。我从未见过有人成功使用Apache Commons telnet库从android连接到telnet。它根本不起作用。