目前我已将我的GWT项目导出为jar并尝试在另一个项目中使用它。然而, 图像没有加载。这是我放置的图像的标签栏,这是一个X没有出现,而是出现了deafult错误图片。
http://i40.tinypic.com/2dklh1f.png
这是我将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
。
感谢您的帮助!
答案 0 :(得分:0)
通过将我的图片文件夹添加到我的新项目中来解决此问题。它似乎无法正确导入,因此它会在新项目中搜索新的url。