0

我是android开发的新手。我正在创建一个应用程序来告诉用户输入的名字的含义,为此我使用www.babynamesworld.parentsconnect.com 来获取数据并从中解析出名字的含义。这里是代码,但它似乎不起作用。

Button b=(Button)findViewById(R.id.button1);

        b.setOnClickListener(new Button.OnClickListener() 
        {

            TextView tv=(TextView)findViewById(R.id.textView1);

            @Override
            public void onClick(View arg0) {
                // TODO Auto-generated method stub

                try {
                    EditText et=(EditText)findViewById(R.id.editText1);
                    Document document = Jsoup.connect("http://babynamesworld.parentsconnect.com/meaning_of_"+et.getText().toString()+".html").get();
                    Element firstMeta = document.select("meta").first();
                     String title = firstMeta.attr("DESCRIPTION"); 
                     tv.setText(title);
                } catch (IOException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }


        }});



    }

一旦我单击按钮,程序就会崩溃。我也添加了互联网访问权限。

4

1 回答 1

0

看起来虚拟机找不到Jsoup类定义。您是否在项目中包含了源文件或 jar?

如果您已经添加了 jar,请尝试清理项目。

于 2012-04-10T13:54:47.390 回答