0

目前我已经将我的 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每当它试图获取图像时,我都会得到。

谢谢您的帮助!

4

1 回答 1

0

通过将我的图像文件夹添加到我的新项目中解决了这个问题。它似乎没有正确导入,因此它在新项目中搜索新 url。

于 2013-11-19T22:26:27.160 回答