我想知道将文件上传到Google云端硬盘时的上传速度。 我使用了Quickstart: Run a Drive App in Java教程。
我认为这是我需要关注的领域,以了解我的上传速度
Insert a file
File body = new File();
body.setTitle("My document");
body.setDescription("A test document");
body.setMimeType("text/plain");
java.io.File fileContent = new java.io.File("document.txt");
FileContent mediaContent = new FileContent("text/plain", fileContent);
File file = service.files().insert(body, mediaContent).execute();
System.out.println("File ID: " + file.getId());
知道我该怎么做?
PS:每1秒显示一次上传速度。所以我需要读取每1秒传递多少字节。