給予所有stackoverflow成員。需要Android HTTP POST幫助
即時通訊新的Android開發,誰能告訴我如何發佈數據在網站上或給我一個採樣器?
我想將哈希值發佈到在線破解程序中,然後將字符串解析爲字符串。
edit_box = enter the hash
sendbutton =發送哈希 text_view = resuld
編輯:我看看@活頭,發現這個resuld http://xdecrypt.com/ajax/liste.php?hash=759fdfa1a99563aa6309bb6ae27537c564547f62
在這裏,我們可以添加散列到Url和結果是。
document.getElementById('hashresult').value="";document.getElementById('hashresult').value+="759fdfa1a99563aa6309bb6ae27537c564547f62(MySQL)=amande1975 ";
現在我想讀這個字符串任何人都可以幫忙嗎?
我想顯示Hashtype MySQL和密碼amande1975。 並將其顯示爲text_view,在ui上。
再次感謝。
編輯:2它的工作,但如何現在拆分字符串?任何人都可以幫忙?
try {
String webPage = "http://xdecrypt.com/ajax/liste.php?hash="+hashedit.getText().toString();
URL url = new URL(webPage);
URLConnection urlConnection = url.openConnection();
InputStream is = urlConnection.getInputStream();
InputStreamReader isr = new InputStreamReader(is);
int numCharsRead;
char[] charArray = new char[1024];
StringBuffer sb = new StringBuffer();
while ((numCharsRead = isr.read(charArray)) > 0) {
sb.append(charArray, 0, numCharsRead);
}
String result = sb.toString();
System.out.println("*** BEGIN ***");
System.out.println(result);
System.out.println("*** END ***");
TextView tv2 = (TextView) findViewById(R.id.textView2);
tv2.setText("HashResuld="+sb.toString());
EDIT3:其作品;)再次
感謝任何幫助;)