如何让这个小程序在 Eclipse 中运行?

时间:2021-02-18 23:56:09

标签: java eclipse

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);
      }
    },
  );
}

我想知道如何在不更改任何内容的情况下运行上面的代码(小错误除外)。我已经尝试创建一个新类。

1 个答案:

答案 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();
        }
    }