内置说明文档及demo
资源文件.zip (421.6 KB)
感谢您提供示例文件和屏幕截图。
请尝试使用最新版本/修复:Aspose.Cells.GridWeb 22.8 和最新资源文件 (acw_client)。 我使用您的三个文件和最新版本的 Aspose.Cells.GridWeb (Java) 测试了您的场景/案例,它工作正常。 您能否尝试使用最新版本的 Aspose.Cells.GridWeb (Java) 和最新的资源文件,如果您仍然发现任何问题,请告诉我们。
没有使用最新的,我要在哪里拿最新的资源文件?
我现在使用的就是最新的资源文件,请您替换我最新提供的资源文件再尝试一下
最新的资源文件里面还有新的问题
我使用以下示例代码再次测试了您的场景/案例,其中包含您之前附加的压缩存档中的文件(“shaixuan.xlsx”和“tupian.xlsx”)。 我在 Windows8 上使用了最新的 Aspose.Cells.GridWeb 版本和最新的资源文件(使用 Google chrome 浏览器类型),它工作正常。
例如。,
示例代码:
<%@ page language="java" contentType="text/html; charset=UTF-8"
import="com.aspose.gridweb.*,java.io.*" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<%
ExtPage BeanManager=ExtPage.getInstance();
BeanManager.setServlet(request, response);
BeanManager.setPageaction( request.getContextPath()+"/GridWebServlet");
BeanManager.setPageajaxcallpath(request.getContextPath()+"/GridWebServlet?acw_ajax_call=true");
GridWebBean gridweb=BeanManager.getBean();
%>
<%@include file="/head.jsp" %>
</head>
<BODY>
<%
gridweb.setEnableAsync(true);
gridweb.setEnablePaging(true);
gridweb.setPageSize(30);
gridweb.setRenderHiddenRow(true);
gridweb.setWidth(Unit.Pixel(1200));
gridweb.setHeight(Unit.Pixel(600));
//String file = "f:\\files\\hunluan.xlsx";
String file = "f:\\files\\shaixuan.xlsx";
gridweb.importExcelFile(file);
gridweb.getWorkSheets().get(0).getCells().get("B1").setValue(gridweb.getVersion());
gridweb.prepareRender();
out.println(gridweb.getHTMLBody());
%>
<br>
</BODY>
</html>
查看随附的屏幕截图,您会发现内容显示正常:
sc_shot_tupian.png (67.2 KB)
sc_shot_shaixuan.png (37.3 KB)
file-read-69839.gif (597.1 KB)
有对应的截图和文字描述。
我这边跑了没发现什么问题,内容显示正常。
如果你这边有问题,请把复现的步骤,和问题现象描述清楚
QQ截图20220826144128.png (9.6 KB)
问题确认了,是这个文件hunluan.xlsx 截图区域显示的和excel不一致,
The issues you have found earlier (filed as CELLSJAVA-44860) have been fixed in this update. This message was posted using Bugs notification tool by Peyton.Xu