目前我已经将我的 GWT 项目导出为 jar 并尝试在另一个项目中使用它。但是,图像没有加载。这是我放置图像的选项卡栏,没有显示 X,而是显示默认错误图片。
这是我将 X 加载为默认图像的代码。
<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent">
<ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder"
xmlns:g="urn:import:com.google.gwt.user.client.ui">
<ui:style>
</ui:style>
<g:HTMLPanel>
<g:HorizontalPanel>
<g:Image width="19px" url="mvpwebapp/gwt/clean/images/xmark.png" ui:field="checkimage"></g:Image>
<g:Label text="ClickMe" ui:field="label_one"/>
<g:Image width="19px" url="mvpwebapp/gwt/clean/images/xmark.png" ui:field="label2_image"/>
<g:Label text="Button 2" ui:field="label_2"/>
<g:Image width="19px" url="mvpwebapp/gwt/clean/images/xmark.png" ui:field="label3_image"/>
<g:Label text="Button 3" ui:field="label_3"/>
<g:Image width="19px" url="mvpwebapp/gwt/clean/images/xmark.png" ui:field="label4_image"></g:Image>
<g:Label text="Button4" ui:field="label_4"/>
</g:HorizontalPanel>
</g:HTMLPanel>
</ui:UiBinder>
[Warn] 404
每当它试图获取图像时,我都会得到。
谢谢您的帮助!