JavaFX アプリケーションは Web サービスと通信する必要があります。この場合、あなたのウェブサイトの単純なフォームだと思います。そのためには、クライアントは GET (柔軟性が低い) または POST (柔軟性が高い) メソッドを使用して、後で PHP スクリプトによって処理されるファイルをアップロードする必要があります。
jewelsea が示唆しているように、Apache HttpClient がその役割を果たします。ただし、私のように、単純なことに依存関係を追加するのが気に入らない場合は、袖をまくり上げて、私が行ったように HttpPost クラスを実装することを決定できます。
/**
* Project: jlib
* Version: $Id: HttpPost.java 463 2012-09-17 10:58:04Z dejan $
* License: Public Domain
*
* Authors (in chronological order):
* Dejan Lekic - http://dejan.lekic.org
* Contributors (in chronological order):
* -
*/
package co.prj.jlib;
import java.io.File;
import java.io.FileInputStream;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
* A class that uses HttpURLConnection to do a HTTP post.
*
* The main reason for this class is to have a simple solution for uploading files using the PHP file below:
*
* Example:
*
* <pre>
* <?php
* // In PHP versions earlier than 4.1.0, $HTTP_POST_FILES should be used instead
* // of $_FILES.
*
* $uploaddir = '/srv/www/lighttpd/example.com/files/';
* $uploadfile = $uploaddir . basename($_FILES['userfile']['name']);
*
* echo '<pre>';
* if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile)) {
* echo "File is valid, and was successfully uploaded.\n";
* } else {
* echo "Possible file upload attack!\n";
* }
*
* echo 'Here is some more debugging info:';
* print_r($_FILES);
*
* print "</pre>";
* }
* ?>
*
* </pre>
*
* TODO:
* - Add support for arbitrary form fields.
* - Add support for more than just one file.
* - Allow for changing of the boundary
*
* @author dejan
*/
public class HttpPost {
private final String crlf = "\r\n";
private URL url;
private URLConnection urlConnection;
private OutputStream outputStream;
private InputStream inputStream;
private String[] fileNames;
private String output;
private String boundary;
private final int bufferSize = 4096;
public HttpPost(URL argUrl) {
url = argUrl;
boundary = "---------------------------4664151417711";
}
public void setFileNames(String[] argFiles) {
fileNames = argFiles;
}
public void post() {
try {
System.out.println("url:" + url);
urlConnection = url.openConnection();
urlConnection.setDoOutput(true);
urlConnection.setDoInput(true);
urlConnection.setUseCaches(false);
urlConnection.setRequestProperty("Content-Type", "multipart/form-data; boundary=" + boundary);
String postData = "";
String fileName = fileNames[0];
InputStream fileInputStream = new FileInputStream(fileName);
byte[] fileData = new byte[fileInputStream.available()];
fileInputStream.read(fileData);
// ::::: PART 1 :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
String part1 = "";
part1 += "--" + boundary + crlf;
File f = new File(fileNames[0]);
fileName = f.getName(); // we do not want the whole path, just the name
part1 += "Content-Disposition: form-data; name=\"userfile\"; filename=\"" + fileName + "\""
+ crlf;
// CONTENT-TYPE
// TODO: add proper MIME support here
if (fileName.endsWith("png")) {
part1 += "Content-Type: image/png" + crlf;
} else {
part1 += "Content-Type: image/jpeg" + crlf;
}
part1 += crlf;
System.out.println(part1);
// File's binary data will be sent after this part
// ::::: PART 2 :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
String part2 = crlf + "--" + boundary + "--" + crlf;
System.out.println("Content-Length"
+ String.valueOf(part1.length() + part2.length() + fileData.length));
urlConnection.setRequestProperty("Content-Length",
String.valueOf(part1.length() + part2.length() + fileData.length));
// ::::: File send ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
outputStream = urlConnection.getOutputStream();
outputStream.write(part1.getBytes());
int index = 0;
int size = bufferSize;
do {
System.out.println("wrote " + index + "b");
if ((index + size) > fileData.length) {
size = fileData.length - index;
}
outputStream.write(fileData, index, size);
index += size;
} while (index < fileData.length);
System.out.println("wrote " + index + "b");
System.out.println(part2);
outputStream.write(part2.getBytes());
outputStream.flush();
// ::::: Download result into the 'output' String :::::::::::::::::::::::::::::::::::::::::::::::
inputStream = urlConnection.getInputStream();
StringBuilder sb = new StringBuilder();
char buff = 512;
int len;
byte[] data = new byte[buff];
do {
len = inputStream.read(data);
if (len > 0) {
sb.append(new String(data, 0, len));
}
} while (len > 0);
output = sb.toString();
System.out.println("DONE");
} catch (Exception e) {
e.printStackTrace();
} finally {
System.out.println("Close connection");
try {
outputStream.close();
} catch (Exception e) {
System.out.println(e);
}
try {
inputStream.close();
} catch (Exception e) {
System.out.println(e);
}
}
} // post() method
public String getOutput() {
return output;
}
public static void main(String[] args) {
// Simple test, let's upload a picture
try {
HttpPost httpPost = new HttpPost(new URL("http://www.example.com/file.php"));
httpPost.setFileNames(new String[]{ "/home/dejan/work/ddn-100x46.png" });
httpPost.post();
System.out.println("=======");
System.out.println(httpPost.getOutput());
} catch (MalformedURLException ex) {
Logger.getLogger(HttpPost.class.getName()).log(Level.SEVERE, null, ex);
}
} // main() method
} // HttpPost class
ご覧のとおり、多くの改善点があります。このクラスは HttpURLConnection を使用し、POST メソッドを使用してファイルをアップロードします。私はそれを使用して、自分の Web サイトの 1 つに写真をアップロードします。