当前位置:   article > 正文

OnlyOffice文档转换--文档转换届的葵花宝典_onlyoffice文档转换报错[error] nodejs - error convert: do

onlyoffice文档转换报错[error] nodejs - error convert: docid = convertreq

参考官方文档:https://api.onlyoffice.com/editors/conversionapi
官方文档很简单,看时序图
在这里插入图片描述
支持的文档转换:
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

上代码:

@Operation(summary = "文档转换")
    @Parameters({
            @Parameter(name = "fileUrl",description = "待转换文档地址",required = true,in = ParameterIn.QUERY),
            @Parameter(name = "inType",description = "输入文档类型",required = true,in = ParameterIn.QUERY),
            @Parameter(name = "outType",description = "输出文档类型",required = true,in = ParameterIn.QUERY)
    })
    @GetMapping("conversion")
    public void conversion(String fileUrl,String filename,String inType,String outType,HttpServletResponse servletResponse){
        String url = onlyofficeServer.concat("ConvertService.ashx");
        JSONObject params = new JSONObject();
        params.put("async",false);
        params.put("filetype",inType);
        params.put("key", MD5.create().digestHex(fileUrl));
        params.put("outputtype", outType);
        params.put("title",filename);
        params.put("url", fileUrl);
        String res = HttpUtil.post(url, params.toJSONString(JSONWriter.Feature.FieldBased));
        JSONObject resObj = JSONObject.parseObject(res);
        //失败
        if(resObj.containsKey("error")){
            ConversionErrorType errorType = ConversionErrorType.of(resObj.getInteger("error"));
            throw new BusinessException(errorType.getMsg());
        }
        String downloadUrl = resObj.getString("fileUrl");
        HttpRequest get = HttpUtil.createGet(downloadUrl);
        HttpResponse response = get.execute();
        HttpUtil.export(servletResponse,response.bodyStream(), new HttpUtil.InputstreamWriteStream(),filename+"."+outType);
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28

html转docx效果图:
在这里插入图片描述
在这里插入图片描述

注意:html转word,针对简单的文档效果还是比较好的,但是word和图片之类的转换效果要差点。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/476196
推荐阅读
相关标签
  

闽ICP备14008679号