Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a p:dataGrid which shows companies . These companies have logo and I want to show their logo
in dataGrid under of their names but images don't appear in page . Only appears a broken image square .

The xhtml code ;

 <p:dataGrid value="#{BDS_Company.companyList}" var="cmp" rows="5" columns="3">
       <p:column>
          <h:panelGrid columns="1">
             <h:outputLabel value="#{cmp.cmpName}"/>
             <h:outputLabel value="#{cmp.cmpEmail}"/>
             <p:graphicImage value="#{BDS_Company.companyLogo(cmp)}"/>
           </h:panelGrid>
       </p:column>
 </p:dataGrid>

The managed bean code ;

public DefaultStreamedContent companyLogo(BdsCompany company) {
        if (company != null) {
            if (company.getCmpLogo() != null) {
                InputStream is = new ByteArrayInputStream(company.getCmpLogo().getDocFile());
                return new DefaultStreamedContent(is);
            }
        }
        return null;
    }

When I change code like that , I take an exception "Method companyLogo not found"

public DefaultStreamedContent getCompanyLogo(BdsCompany company) {
        if (company != null) {
            if (company.getCmpLogo() != null) {
                InputStream is = new     ByteArrayInputStream(company.getCmpLogo().getDocFile());
                return new DefaultStreamedContent(is);
            }
        }
        return null;
 }

But another page I used getPersonPicture() which shows loged person's profile picture and doesn't take parameter works great ! . I don't understand why companies' logos don't appear in page :/

Can anyone help me about this situation or suggest another way to show images ?

Thanks in advance .

share|improve this question
the problem looks similar question – Ravi Feb 6 '12 at 23:28
anyways instead of returning a byte stream. There is a better way to do this, see this question/answer – Ravi Feb 6 '12 at 23:32
thanks , but I need to get images from db as dynamic and I don't have problem sending parameter to method because first code takes parameter and works but only I thought that p:graphicImage need a getter – Jman Feb 7 '12 at 2:48

1 Answer

up vote 2 down vote accepted

Create a String url (/images/company.png) instaed of DefaultStreamedContent for graphicImage value. Write a servlet, add to web.xml and map your image url (/images/*).

Do anything with database in servlet doGet and return your image stream as response.

http://rajivas.wordpress.com/tag/writing-directly-to-response-stream-in-jsf/

share|improve this answer
thanks ! I used also ImageIO to write image response outputstream and now it works :) – Jman Feb 7 '12 at 13:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.