我创建了一个java黄瓜maven项目。现在,我想在完成测试脚本的执行后,在dropbox中推送所有报告。
我的主要目标是在Dropbox上推送报告文件夹。
我正在使用maven下面的依赖:
<dependency>
<groupId>com.dropbox.core</groupId>
<artifactId>dropbox-core-sdk</artifactId>
<version>1.7.2</version>
</dependency>
我知道它是旧的依赖项,但Dropbox提供的代码仅受此lib支持。更高版本显示错误或弃用方法。
来源:
https://www.dropbox.com/developers-v1/core/start/java
我使用的代码如下:
public class DropBoxUpload {
public static void main(String[] args) throws IOException, DbxException {
// Get your app key and secret from the Dropbox developers website.
final String APP_KEY = "MyAppKey";
final String APP_SECRET = "MyAppSecretKey";
DbxAppInfo appInfo = new DbxAppInfo(APP_KEY, APP_SECRET);
DbxRequestConfig config = new DbxRequestConfig("JavaTutorial/1.0",
Locale.getDefault().toString());
DbxWebAuthNoRedirect webAuth = new DbxWebAuthNoRedirect(config, appInfo);
// Have the user sign in and authorize your app.
String authorizeUrl = webAuth.start();
System.out.println("1. Go to: " + authorizeUrl);
System.out.println("2. Click \"Allow\" (you might have to log in first)");
System.out.println("3. Copy the authorization code.");
String code = new BufferedReader(new InputStreamReader(System.in)).readLine().trim();
// This will fail if the user enters an invalid authorization code.
DbxAuthFinish authFinish = webAuth.finish(code);
String accessToken = authFinish.accessToken;
DbxClient client = new DbxClient(config, accessToken);
System.out.println("Linked account: " + client.getAccountInfo().displayName);
File inputFile = new File("working-draft.txt");
FileInputStream inputStream = new FileInputStream(inputFile);
try {
DbxEntry.File uploadedFile = client.uploadFile("/magnum-opus.txt",
DbxWriteMode.add(), inputFile.length(), inputStream);
System.out.println("Uploaded: " + uploadedFile.toString());
} finally {
inputStream.close();
}
DbxEntry.WithChildren listing = client.getMetadataWithChildren("D:\\MavenJenkinsCI\\target\\cucumber-html-reports");
System.out.println("Files in the root path:");
for (DbxEntry child : listing.children) {
System.out.println(" " + child.name + ": " + child.toString());
}
FileOutputStream outputStream = new FileOutputStream("magnum-opus.txt");
try {
DbxEntry.File downloadedFile = client.getFile("/magnum-opus.txt", null,
outputStream);
System.out.println("Metadata: " + downloadedFile.toString());
} finally {
outputStream.close();
}
}
问题是当我运行此代码时。它停留在下面一行:
String code = new BufferedReader(new InputStreamReader(System.in)).readLine().trim();
知道为什么吗?
环境
如果您有任何解决方法,请分享。
这真的有帮助。
答案 0 :(得分:1)
它停留在那条线上的事实是正常的。该程序只是希望用户从控制台输入,以便继续下一行代码。
答案 1 :(得分:0)
Greg提供了正确的依赖关系和示例,这使我能够按要求完成。
新版本:
https://github.com/dropbox/dropbox-sdk-java
这里有一个上传示例:
我还在下面添加了一篇文章,在整合过程中帮助我: