Advertisement
Guest User

Untitled

a guest
May 29th, 2015
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. try {
  2. EditText et = (EditText)findViewById(R.id.search_text);
  3. String searchedString = et.getText().toString();
  4. String encodedString = URLEncoder.encode(searchedString, "euc-kr");
  5. } catch (UnsupportedEncodingException e) {
  6. e.printStackTrace();
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement