有没有办法在google工作表中输出实时时钟值?基本上我要做的就是使用单元格中的值创建一个实时甘特图,它将根据操作员使用的时间值和停机时间输出机器的状态。
答案 0 :(得分:1)
有两种方法可以实现这一目标。第一个是最简单的,= now()每分钟自动更新。第二种技术更复杂,但提供更多控制,特别是如果你想控制时钟应该更新的精确时刻。
最简单的方式 - 20秒:
很长的路 - 5到30分钟。需要服务器每x分钟执行一次代码
可以通过API完成此操作。有两种方法可以实现这一点,但两者都涉及API。
1)创建一张空白表并使用API更新任何单元格中的时间。让我们称这张表为通用。只需在单元格中插入“= now()”,就可以确保每次进行API调用时都会更新时间。在每个API调用中使用“= now()”覆盖此单元格。然后在引用通用工作表中的调用值的任何工作表中使用函数IMPORTRANGE()。这是首选选项,因为您只需要为一个工作表创建代码,然后您可以在任何其他工作表中引用。
2)与上面相同,但只是直接写入您的工作表和单元格而不是通用工作表。这种方法的缺点是,如果你移动单元格,则需要更改代码。
这两个选项都要求您每隔x分钟调用API并设置一个预定作业来运行该程序。
说明(JAVA - 尽管您可以遵循其他语言的相同逻辑)。以下大部分内容都是从Google表格API指南中复制而来的,我列出了以下所有步骤:
第1步:启用Google表格API
a 使用this wizard在Google Developers Console中创建或选择项目并自动启用API。单击继续,然后转到凭据。
b 在“将凭据添加到项目”页面上,单击“取消”按钮。
c 在页面顶部,选择OAuth许可屏幕标签。选择电子邮件地址,输入产品名称(如果尚未设置),然后单击“保存”按钮。
d 选择“凭据”标签,单击“创建凭据”按钮,然后选择“OAuth客户端ID”。
e 选择应用类型其他,输入名称“Google表格API快速入门”,然后点击“创建”按钮。
f 单击“确定”关闭生成的对话框。
g 点击客户端ID右侧的file_download(下载JSON)按钮。
h 将此文件移至工作目录并将其重命名为client_secret.json。
第2步如果使用Maven,请将以下依赖项添加到您的pom文件中:
<dependency>
<groupId>com.google.api-client</groupId>
<artifactId>google-api-client-java6</artifactId>
<version>1.23.0</version>
</dependency>
<dependency>
<groupId>com.google.oauth-client</groupId>
<artifactId>google-oauth-client-jetty</artifactId>
<version>1.23.0</version>
</dependency>
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-sheets</artifactId>
<version>v4-rev504-1.23.0</version>
</dependency>
第3步复制此类Credentials.java
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.List;
import com.google.api.client.auth.oauth2.Credential;
import com.google.api.client.extensions.java6.auth.oauth2.AuthorizationCodeInstalledApp;
import com.google.api.client.extensions.jetty.auth.oauth2.LocalServerReceiver;
import com.google.api.client.googleapis.auth.oauth2.GoogleAuthorizationCodeFlow;
import com.google.api.client.googleapis.auth.oauth2.GoogleClientSecrets;
import com.google.api.client.googleapis.javanet.GoogleNetHttpTransport;
import com.google.api.client.http.HttpTransport;
import com.google.api.client.json.JsonFactory;
import com.google.api.client.json.jackson2.JacksonFactory;
import com.google.api.client.util.store.FileDataStoreFactory;
import com.google.api.services.sheets.v4.Sheets;
import com.google.api.services.sheets.v4.SheetsScopes;
public class Credentials {
/** Application name. */
private static final String APPLICATION_NAME =
"Google Sheets";
/** Directory to store user credentials for this application. */
private static final java.io.File DATA_STORE_DIR = new java.io.File(
System.getProperty("user.home"), ".credentials/sheets.googleapis.com-java-quickstart");
/** Global instance of the {@link FileDataStoreFactory}. */
private static FileDataStoreFactory DATA_STORE_FACTORY;
/** Global instance of the JSON factory. */
private static final JsonFactory JSON_FACTORY =
JacksonFactory.getDefaultInstance();
/** Global instance of the HTTP transport. */
private static HttpTransport HTTP_TRANSPORT;
/** Global instance of the scopes required by this quickstart.
*
* If modifying these scopes, delete your previously saved credentials
* at ~/.credentials/sheets.googleapis.com-java-quickstart
*/
private static final List<String> SCOPES =
Arrays.asList(SheetsScopes.SPREADSHEETS);
static {
try {
HTTP_TRANSPORT = GoogleNetHttpTransport.newTrustedTransport();
DATA_STORE_FACTORY = new FileDataStoreFactory(DATA_STORE_DIR);
} catch (Throwable t) {
t.printStackTrace();
System.exit(1);
}
}
/**
* Creates an authorized Credential object.
* @return an authorized Credential object.
* @throws IOException
*/
public static Credential authorize() throws IOException {
// Load client secrets.
InputStream in =
Quickstart.class.getResourceAsStream("/client_secret.json");
GoogleClientSecrets clientSecrets =
GoogleClientSecrets.load(JSON_FACTORY, new InputStreamReader(in));
// Build flow and trigger user authorization request.
GoogleAuthorizationCodeFlow flow =
new GoogleAuthorizationCodeFlow.Builder(
HTTP_TRANSPORT, JSON_FACTORY, clientSecrets, SCOPES)
.setDataStoreFactory(DATA_STORE_FACTORY)
.setAccessType("offline")
.build();
Credential credential = new AuthorizationCodeInstalledApp(
flow, new LocalServerReceiver()).authorize("user");
System.out.println(
"Credentials saved to " + DATA_STORE_DIR.getAbsolutePath());
return credential;
}
/**
* Build and return an authorized Sheets API client service.
* @return an authorized Sheets API client service
* @throws IOException
*/
public static Sheets getSheetsService() throws IOException {
Credential credential = authorize();
return new Sheets.Builder(HTTP_TRANSPORT, JSON_FACTORY, credential)
.setApplicationName(APPLICATION_NAME)
.build();
}
}
第4步复制下面的类UpdateDate.java。使用电子表格的ID更改spreadsheetID。使用单元格引用更改范围。我输入了Sheet1!a1的默认值作为示例
import java.io.IOException;
import java.util.Arrays;
import java.util.List;
import com.google.api.services.sheets.v4.Sheets;
import com.google.api.services.sheets.v4.model.UpdateValuesResponse;
import com.google.api.services.sheets.v4.model.ValueRange;
public class UpdateDate {
public static void main(String[] args) throws IOException{
Sheets service = Credentials.getSheetsService();
String spreadsheetId = "YOUR_SHEET_ID";
String range = "Sheet1!a1";
@SuppressWarnings("unchecked")
List<List<Object>> values = Arrays.asList(
Arrays.asList(
(Object)"=NOW()"
)
);
ValueRange body = new ValueRange().setValues(values);
UpdateValuesResponse result =
service.spreadsheets().values().update(spreadsheetId, range, body)
.setValueInputOption("USER_ENTERED")
.execute();
}
}
步骤5 根据您的使用情况,将计划作业设置为每x分钟运行一次。第一次运行此浏览器时,您的浏览器应该打开,您需要单击“接受同意”屏幕。然后在本地保存凭据,以便您可以通过命令行运行该过程,而无需再次单击同意屏幕。
祝你好运!
答案 1 :(得分:0)
看起来你想要NOW功能。我不认为工作表支持实时更新,因此挥发性功能(更新工作表时更改)是您可以做的最好的。