2011-08-03 28 views
-1

これは私のJavaアプリケーションにあるメソッドです。バイトを正しく読み込んでいますが、それがあったかどうかを確認するためにログに記録しています。問題は、PHPがそこにあるデータを実現していないということです。私はテストして、.phpは$ _POSTが設定されていると読むが空です。ここでPHPのPOSTデータを使用してJavaに.pngをサーバーにアップロード

public void screenshot(BufferedImage screenshot) { 
    try { 
     ImageIO.write(screenshot, "png", 
       new File(Environment.getStorageDirectory().toString() 
         .concat(File.separator + SCRIPT_NAME + ".png"))); 

     HttpURLConnection httpUrlConnection; 
     OutputStream outputStream; 
     BufferedInputStream fileInputStream; 
     BufferedReader serverReader; 
     int totalBytes; 
     String response = ""; 
     String serverResponse = ""; 
     String localFileName = Environment.getStorageDirectory().toString() 
       .concat(File.separator + SCRIPT_NAME + ".png"); 

     // Establish a connection 
     httpUrlConnection = (HttpURLConnection) new URL(
       "http://www.scripted.it/scriptoptions/utils/saveScreenshot.php?user=" 
         + SupraCrafter.statHandler.getUser()) 
       .openConnection(); 
     httpUrlConnection.setDoOutput(true); 
     httpUrlConnection.setDoInput(true); 
     httpUrlConnection.setRequestMethod("POST"); 
     httpUrlConnection.setRequestProperty("Content-type", 
       "application/x-www-form-urlencoded"); 
     outputStream = httpUrlConnection.getOutputStream(); 

     // Buffered input stream 
     fileInputStream = new BufferedInputStream(new FileInputStream(
       localFileName)); 

     // Get the size of the image 
     totalBytes = fileInputStream.available(); 

     // Loop through the files data 
     for (int i = 0; i < totalBytes; i++) { 
      // Write the data to the output stream 
      outputStream.write(fileInputStream.read()); 
     } 

     // Close the output stream 
     outputStream.close(); 

     // New reader to get server response 
     serverReader = new BufferedReader(new InputStreamReader(
       httpUrlConnection.getInputStream())); 

     // Read the servers response 
     serverResponse = ""; 
     while ((response = serverReader.readLine()) != null) { 
      serverResponse = serverResponse + response; 
     } 

     System.out.println(serverResponse); 

     // Close the buffered reader 
     serverReader.close(); 
    } catch (Exception e) { 
     e.printStackTrace(); 
    } 
    try { 
     URL url = new URL(
       "http://scripted.it/scriptoptions/utils/setScreenshotStatus.php?user=" 
         + SupraCrafter.statHandler.getUser() + "&pass=" 
         + SupraCrafter.statHandler.getPass() + "&script=" 
         + SCRIPT_NAME + "&status=1"); 
     BufferedReader in = new BufferedReader(new InputStreamReader(
       url.openStream())); 
     in.close(); 
    } catch (MalformedURLException e) { 
    } catch (IOException e) { 
    } 
} 

の.phpファイルです。 '無入力データ'

<? 
// Config 
$uploadBase = "../screenshots/"; 
$uploadFilename = $_GET['user'] . ".png"; 
$uploadPath = $uploadBase . $uploadFilename; 

// Upload directory 
if(!is_dir($uploadBase)) 
mkdir($uploadBase); 

// Grab the data 
$incomingData = file_get_contents('php://input'); 

// Valid data? 
if(!$incomingData) 
die("No input data"); 

// Write to disk 
$fh = fopen($uploadPath, 'w') or die("Error opening file"); 
fwrite($fh, $incomingData) or die("Error writing to file"); 
fclose($fh) or die("Error closing file"); 

echo "Success"; 
?> 

それは常にエコー

+0

だけでなく、あなたのHTMLフォームを入れてください。 –

+0

content-typeは* multipart/form-data * –

+0

でなければなりません。html形式はありません。私はmultipart/form-dataに変更しようとしましたが、同じことをしました。 – Sam

答えて

0

application/x-www-form-urlencodedを使用してコンテンツをエンコードしていません。単にバイトをHTTPペイロードにコピーするのではなく、正しくエンコードする必要があります。

application/x-www-form-urlencodedは、それをエンコードする唯一の方法ではありません。multipart/form-dataもよくある選択です。どちらもほぼすべてのウェブサーバーでサポートされており、結果としてPHPによってサポートされています。

Javaを使用してエンコードする方法についてのチュートリアルはここにある:あなたはすでにあなたのためにそれ退屈な作業を行うApacheのHttpClientをまたは類似のライブラリを使用していないのはなぜhttp://www.devx.com/Java/Article/17679

のApacheのHttpClient:http://hc.apache.org/httpcomponents-client-ga/

+0

私はそれを行う方法がわかりません。私をチュートリアルやウェブサイトにリンクすることはできますか?基本的には、ローカルの.pngをサーバーにアップロードしようとしています。 – Sam

+0

あなたのためにいくつかのリンクを編集しました。 –

+0

そのdevxのURLは、私はどのようにjavaを使用してエンコードを表示されません。そして、私はそのApacheクライアントを使用する方法がわかりません – Sam

関連する問題