1

我在谷歌文档与文件列表API创建我的电子表格模板的副本,我意识到:搜索创建

1. title queries works fine 
2. content queries are not working(*) or partially working(**) 
(*)for majority of spreadsheets: I searched every word from the content of a spreadsheet and I get no results 
(**) for a few spreadsheets I find results for some words that are copied from template; the particular words queries are not working 
3. If I update the spreadsheet after a few minutes all queries work fine. 
(I make this searches from UI) 

这是创建该文件的步骤:

1. Copy spreadsheet template to root 

private String sendPostCopyRequest(String authorizationToken, String resourceID, String title, int noRetries) throws IOException{ 
    /* 
    resourceId = resource id for the template that i want to copy 
    title = the title of the new file created 
    */  
    String urlStr = "https://docs.google.com/feeds/default/private/full"; 
    URL url = new URL(urlStr); 
    HttpURLConnection copyHttpUrlConn = (HttpURLConnection) url.openConnection(); 
    copyHttpUrlConn.setDoOutput(true); 
    copyHttpUrlConn.setRequestMethod("POST"); 

    String outputString = "<?xml version='1.0' encoding='UTF-8'?>" + 
      "<entry xmlns=\"http://www.w3.org/2005/Atom\"> " + 
      "<id>https://docs.google.com/feeds/default/private/full/" + resourceID +"</id>" + 
      " <title>" + title + "</title></entry>"; 

    copyHttpUrlConn.setRequestProperty("GData-Version", "3.0"); 
    copyHttpUrlConn.setRequestProperty("Content-Type","application/atom+xml"); 

    copyHttpUrlConn.setRequestProperty("Content-Length", outputString.length() + ""); 
    copyHttpUrlConn.setRequestProperty("Authorization", "GoogleLogin auth=" + authorizationToken); 

    OutputStream outputStream = copyHttpUrlConn.getOutputStream(); 

    outputStream.write(outputString.getBytes()); 
    copyHttpUrlConn.getResponseCode(); 

    return readIdFromResponse(copyHttpUrlConn.getInputStream()); 
} 

2. I update some cells using this method: 

public boolean setCellValue(SpreadsheetService spreadSheetService, SpreadsheetEntry entry, int worksheetNumber, String position, String value) throws IOException, ServiceException { 

    List<WorksheetEntry> worksheets = entry.getWorksheets(); 
    WorksheetEntry worksheet = worksheets.get(worksheetNumber); 
    URL cellFeedUrl = worksheet.getCellFeedUrl(); 
    CellQuery query = new CellQuery(cellFeedUrl); 
    query.setReturnEmpty(true); 
    query.setRange(position); 
    CellFeed cellFeed = spreadSheetService.query(query, CellFeed.class); 
    CellEntry cell = cellFeed.getEntries().get(0); 

    cell.changeInputValueLocal(value); 
    cell.update(); 
    return true; 

} 

3. I move the created file to a new folder (collection) 

    public DocumentListEntry moveSpreadSheet(DocsService docsService, String entryId, String destinationFolderDocId) throws MalformedURLException, IOException, ServiceException { 

    DocumentListEntry newEntry = null; 
    newEntry = new com.google.gdata.data.docs.SpreadsheetEntry(); 
    newEntry.setId(entryId); 
    String destFolderUri = "https://docs.google.com/feeds/default/private/full/folder%3A"+ destinationFolderDocId + "/contents"; 

    return docsService.insert(new URL(destFolderUri), newEntry); 

} 

(the same results with gdata java sdk api 1.4.5, 1.4.6, 1.4.7) 

这发生在2011年12月23日(与aproximation)。对于在此日期之前使用相同代码创建的所有电子表格,所有查询均可正常工作。

我可以根据要求提供其他信息。

更新:

  1. 这个问题似乎与转换上传电子表格中也出现。
  2. 如果我在创建/上传(〜2小时)后的一段时间后更新文件,查询将返回结果中的文件。
+0

我和其他几个人报告GoogleDocs在电子表格中的搜索功能已损坏(Google支持论坛,现在无法找到该链接)。一位谷歌员工证实,旧文件没有编入索引(AFAIK由于某个时间点的错误),我们必须打开并编辑它们才能重新编制索引。但是,今天我发现电子表格中的搜索不适用于8天前创建的传播热,因此我认为该错误再次出现。我建议你搜索谷歌论坛,看看你是否可以找到目前的状态。 – user77115 2012-05-07 07:37:21

+0

我知道那篇文章,因为我也在那里报道(这是链接 - [链接](http://productforfors.google.com/forum/#!starred/docs/vEhI_HkKX3I)),但它是关于创建的文件从UI。我会在那里通知他们(似乎对于从UI新上传的文件是同样的问题,但在一个单元更新工作正常) – 2012-05-07 11:47:24

回答

0

您的问题可能与电子表格内容的Google索引速度较慢有关。

https://groups.google.com/a/googleproductforums.com/d/msg/docs/vEhI_HkKX3I/MGKqkryrx90J

“目前它可拍摄约10分钟,内容生成索引你写到您的电子表格中。所以,如果你输入一些东西,然后搜索它了,它可能不会显示(我们正在努力提高这个速度)“

+0

我的问题不是关于减慢谷歌索引...我说的是创建的文件从几个月前(不是10分钟)开始 – 2012-05-07 11:50:06

+0

建议的解决方法:编写一些代码以循环遍历所有电子表格,触摸单元格并保存。然后请与社区分享:-) – user77115 2012-05-07 12:06:31

+0

我想这是行不通的。我的所有电子表格都是使用以下步骤获取的:从模板复制,从中更新随机单元格。这意味着我已经做了你所说的话。我会尽力去做,也许正在工作,如果我在创建后的较长时间后更新它们。我会回来的结果 – 2012-05-07 12:24:06