1. 经验证,V4.5 产品登录界面不会变成英文
      2. 修改的文件有 pom 依赖,LocalizedTextUtil 文件覆盖。见附件

    image.png

    image.png

    image.png

    image.png

    pom.xml

    LocalizedTextUtil.java

  • sql 的 in 字符串大于 1000 个,需要让开发修改 sql 语句,将 in 条件按 999 个一组拼接.

  • 这种方式,多终端访问会挤出另外一个终端。
    可以在 applicationContext-security.xml 配置绕过登录
    image.png

  • 已解决,使用 aspose cells 相关 api 可以设置

    public static void main(String[] args) throws Exception
    {

        // 验证License
        if (!getLicense()) {
            return;
        }
        Workbook workbook = new Workbook("C:/Users/Administrator/Desktop/电子履历.xls");
        PageSetup pageSetup = workbook.getWorksheets().get(1).getPageSetup();
        //Setting picture at the central footer
        pageSetup.setHeader(0, "&G");
        FileInputStream fis = new FileInputStream("C:/Users/Administrator/Desktop/logo.jpg");
        byte[] picData = new byte[fis.available()];
        fis.read(picData);
        pageSetup.setHeaderPicture(0, picData);
        
        //Pull the picture out
        Picture pic = pageSetup.getPicture(true, 0);
       
        //Set the aspect ratio to lock and keep it relative to the original
        pic.setLockAspectRatio(true);
        pic.setRelativeToOriginalPictureSize(true);
        //Set the height only
        pic.setHeightInch(0.8);
        pic.setWidthInch( pic.getWidthInch()*pic.getHeightScale() /95);
    
        
        fis.close();
        workbook.save("C:/Users/Administrator/Desktop/电子履历.xls");
    }
    
    /**
     * 获取license
     * 
     * @return
     */
    public static boolean getLicense() {
        boolean result = false;
        try {
            license = new FileInputStream("C:/Users/Administrator/Desktop/AsposeCells/AsposeCells/source/license.xml");// 凭证文件
    
            License aposeLic = new License();
            aposeLic.setLicense(license);
            result = true;
        } catch (Exception e) {
            e.printStackTrace();
        }
        return result;
    } 
    
jun
白俊
会员
  • 3 标签
  • 20 帖子
  • 5 回帖



个人主页