Cannot find resource /resources/Blank.doc

I encountered this problem when using word to pdf, very bad, please friends to help me look at it.

public static boolean wordToPdf(String wordPath, String pdfPath)
{
    FileOutputStream os = null;
    try
    {
        File file = new File(pdfPath);
        os = new FileOutputStream(file);
        Document doc = new Document(wordPath);
        doc.save(os, 40);
        return true;
    }
    catch (Exception e)
    {
        log.info("error ===" + e.getMessage());
        e.printStackTrace();
    }
    finally
    {
        if (os != null)
        {
            try
            {
                os.flush();
                os.close();
            }
            catch (IOException var12)
            {
                var12.printStackTrace();
            }
        }
    }
    return false;
}

error === Cannot find resource /resources/Blank.doc

@Guanglong2577497261 Does the problem occur with some specific document? Blank.doc is Aspose.Words internal resource, please make sure Aspose.Words JAR was not changed or repacked.
If possible please create a simple application or provide input document that will allow us to reproduce the problem. We will check and provide you more information.

word files are fine because my local computer can convert them, but that’s what happens when I publish to linux

@Guanglong2577497261 Looks like Aspose.Words JAR has been damaged upon deployment process.