服务提供WORD全文下载,支持中国发明专利数据和实用新型专利数据。
名称 | 类型 | 是否必须 | 示例值 | 描述 |
pub_num | String | 是 | CN202097706U | 专利公开号 |
pub_date | String | 是 | 20120104 | 专利公开日 |
fileCategory | enum | 否 | PatentFileCategory.PDF | 文件类别:WORD/PDF(默认PDF) |
patentCategory | enum | 否 | PatentCategory.APP | 专利类型:APP/AUTH(默认APP) |
名称 | 类型 | 描述 |
contentInBytes | byte[] | byte数组 |
CubeOpenFileRequest request = new CubeOpenFileRequest();
request.setPubNum("CN202097706U");
request.setPubDate("20120104");
request.setFileCategory(PatentFileCategory.WORD);
request.setPatentCategory(PatentCategory.APP);
CubePatentFileResponse response = CLIENT.execute(request);
byte[] contentInBytes = cubePatentFileResponse.getFileByte();
File file = new File("/Users/file-test/test.doc");
if (!file.exists()) {
file.createNewFile();
}
FileOutputStream fileOutputStream = new FileOutputStream(file);
fileOutputStream.write(contentInBytes);
fileOutputStream.flush();
fileOutputStream.close();
{
"errorCode":"500",
"fileByte":"AAAAAAAAAAAAAA==",
"msg":"pubDate cannot be null or empty!",
"success":false
}