const uploadPNGToFolder = (folderId, fileName, dataURL) => {
const fileMetadata = {
name: fileName,
parents: [folderId],
};
const media = {
mimeType: 'image/png',
body: dataURL,
};
const { auth } = this;
return google.drive('v3').files.create(
{
resource: fileMetadata,
media,
fields: 'id',
auth,
corpora: 'teamDrive',
includeTeamDriveItems: 'true',
supportsTeamDrives: 'true',
teamDriveId: process.env.CLINIC_TEAM_DRIVE,
},
(err, file) => {
if (err) {
console.error(err);
} else {
console.log('File: ', file.id);
}
},
);
}
我想知道如何在不更改任何内容的情况下运行上面的代码(小错误除外)。我已经尝试创建一个新类。
答案 0 :(得分:0)
请访问帮助中心。阅读https://stackoverflow.com/help/how-to-ask。
要回答您的问题,您需要创建一个项目。 文件 > 新建 > Java 项目
完成设置,然后转到File > New > Class
粘贴您的修复(检查下面)代码并运行。
private static int foo (int a) {
int b = a + 6;
return b;
}
public static void main(String[] args) {
try {
int c = 5;
int x = foo(c);
System.out.println(x);
}
catch (Exception e) {
e.printStackTrace();
}
}