0

私は自分のコンピューターで作成した楽しい小さなスクリプトを呼び出す Android アプリを作成しようとしています。Web ブラウザーでスクリプトを開くと、コンピューターは「ビープ」コマンドを実行します。ボタンを押すとウェブサイトが呼び出され、コンピューターのビープ音が鳴るように、Androidアプリ内からこれを行うにはどうすればよいですか? 私はこれを試しましたが、私にはうまくいかないようでした。

HttpGet httpget = new HttpGet(
    "http://www.blah.com/beep.php");

詳細: サーバーで実行しているコード:

beeping!
<?php
shell_exec("beep -f 2000 -r 3 -l 100 -d 20"); ?>

beep メソッドを呼び出すボタンを持つアプリを実行しています。

public class MainActivity extends Activity {

@Override
  protected void onCreate(Bundle savedInstanceState) {
   super.onCreate(savedInstanceState);
   setContentView(R.layout.activity_main);
 }

@Override
 public boolean onCreateOptionsMenu(Menu menu) {
 // Inflate the menu; this adds items to the action bar if it is present.
 getMenuInflater().inflate(R.menu.main, menu);
 return true;
} //here is the error that says i need to remove this token

new Thread(new Runnable() {
  public void run(){
    try{
      HttpClient httpclient = new DefaultHttpClient();

      HttpGet httpget = new HttpGet(
        "http://www.blah.com/beep.php");
    }
    catch(Exception e){
      throw e;
  }}
}).start();
} //here is the error to insert } to complete classbody
4

1 に答える 1

1
new Thread(new Runnable() {
public void run() {
    try {
    HttpClient httpclient = new DefaultHttpClient();

    HttpGet httpget = new HttpGet(
        "http://www.blah.com/beep.php");
    HttpResponse response = httpclient.execute(httpget);
    } catch(Exception x) {
        ...
    }}
}).start();
于 2013-05-20T20:44:09.423 に答える