我是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();
}
}});
}
一旦我单击按钮,程序就会崩溃。我也添加了互联网访问权限。