Skip to content

Instantly share code, notes, and snippets.

@vbalien
Created October 22, 2015 13:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vbalien/5ef0f9fd2827ef369256 to your computer and use it in GitHub Desktop.
Save vbalien/5ef0f9fd2827ef369256 to your computer and use it in GitHub Desktop.
Scanner scan = new Scanner(System.in);
// Desktop 지원 여부 체크
if(Desktop.isDesktopSupported())
{
Desktop.getDesktop().browse(new URI(
"http://search.naver.com/search.naver?where=nexearch&query=" +
URLEncoder.encode(scan.next(), "UTF-8") + // URL 인코딩
"&sm=top_hty&fbm=2&ie=utf8"));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment