1

如何将 AppEngineFile 转换为字节数组?

我有像这样从 blobkey 创建的文件

AppEngineFile file = fileService.getBlobFile(new BlobKey("blob key"));

我已经尝试过这样的事情

FileService fileService = FileServiceFactory.getFileService();

// Create a new Blob file with mime-type "text/plain"
AppEngineFile file = fileService.getBlobFile(new BlobKey(video.getBlobkey()));

BlobstoreInputStream b = new BlobstoreInputStream(new BlobKey(video.getBlobkey()));

RandomAccessFile f = new RandomAccessFile(file.getFullPath(), "r");
byte[] pixels = b.read(); //doesn't work

这个想法是通过 POST 请求发送这个字节数组。

这是我必须构建请求的代码:

String attachmentName = "test";
String attachmentFileName = "test.mp4";
String crlf = "\r\n";
String twoHyphens = "--";
String boundary =  "*****";

HttpURLConnection httpUrlConnection = null;
URL url = new URL("http://example.com/server.cgi");
httpUrlConnection = (HttpURLConnection) url.openConnection();
httpUrlConnection.setUseCaches(false);
httpUrlConnection.setDoOutput(true);
DataOutputStream request = new DataOutputStream(httpUrlConnection.getOutputStream());

request.writeBytes(twoHyphens + boundary + crlf);
request.writeBytes("Content-Disposition: form-data; name=\"" + attachmentName + "\";filename=\"" + attachmentFileName + "\"" + crlf);
request.writeBytes(crlf);

// Get a file service
FileService fileService = FileServiceFactory.getFileService();
// Create a new Blob file with mime-type "text/plain"
AppEngineFile file = fileService.getBlobFile(new BlobKey(video.getBlobkey()));

BlobstoreInputStream b = new BlobstoreInputStream(new BlobKey(video.getBlobkey()));

RandomAccessFile f = new RandomAccessFile(file.getFullPath(), "r");
byte[] pixels = b.read();

request.write(pixels);

request.writeBytes(crlf);
request.writeBytes(twoHyphens + boundary + twoHyphens + crlf);

request.flush();
request.close();

InputStream responseStream = new    BufferedInputStream(httpUrlConnection.getInputStream());

BufferedReader responseStreamReader = new BufferedReader(new InputStreamReader(responseStream));
String line = "";
StringBuilder stringBuilder = new StringBuilder();
while ((line = responseStreamReader.readLine()) != null)
{
    stringBuilder.append(line).append("\n");
}
responseStreamReader.close();

String response = stringBuilder.toString();
System.out.println(response);
4

2 回答 2

3

你可以简单地这样做:

FileReadChannel ch = fileservice.openReadChannel(file, true);
byte[] data = getBytes(Channels.newInputStream(ch));

并使用这种方便的方法(可在其他地方使用):

public static byte[] getBytes(InputStream is) throws IOException {
    ByteArrayOutputStream buffer = new ByteArrayOutputStream();

    int len;
    byte[] data = new byte[100000]; // adapt buffer size to your needs
    while ((len = is.read(data, 0, data.length)) != -1) {
        buffer.write(data, 0, len);
    }

    buffer.flush();
    return buffer.toByteArray();
}
于 2013-02-20T10:08:39.153 回答
2
AppEngineFile file = ...

int size = (int) fileservice.stat(file).getLength().longValue();

    FileReadChannel ch = fileservice.openReadChannel(file, true);
    ByteBuffer dst = ByteBuffer.allocate(size);
    try {
        int sum=0;
        while (sum<size) {
           int read = ch.read(dst);
           sum+=read;
        }
    } finally {ch.close();}

    bytes byte[] = dst.array();

(这不是从 Java 中的 Channel 读取的方式,但似乎 appengine 中有一个错误,需要您知道确切的字节数)。

于 2013-02-19T21:00:36.133 回答