IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Struts 1 Java Discussion :

[Struts-Layout] layout:collection - afficher des images


Sujet :

Struts 1 Java

  1. #21
    Membre à l'essai
    Inscrit en
    Septembre 2009
    Messages
    36
    Détails du profil
    Informations forums :
    Inscription : Septembre 2009
    Messages : 36
    Points : 20
    Points
    20
    Par défaut
    le web.xml est le suivant :

    Code xml : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    <?xml version="1.0" encoding="ISO-8859-1" ?>
     
     
    <web-app xmlns="http://java.sun.com/xml/ns/j2ee"
    	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    	xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
    	version="2.4">
     
     
    	  <servlet>
         <servlet-name>action</servlet-name>
        <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
        <init-param>
          <param-name>config</param-name>
          <param-value>/WEB-INF/struts-config.xml</param-value>
        </init-param>
        <init-param>
          <param-name>debug</param-name>
          <param-value>2</param-value>
        </init-param>
        <init-param>
          <param-name>detail</param-name>
          <param-value>2</param-value>
        </init-param>
        <init-param>
    			<param-name>validate</param-name>
    			<param-value>true</param-value>
    		</init-param>
    		<init-param>
    			<param-name>multipartClass</param-name>
    			<param-value>
    				org.apache.struts.upload.CommonsMultipartRequestHandler
    			</param-value>
    		</init-param>
     
        <load-on-startup>2</load-on-startup>
      </servlet>
     
      <servlet-mapping>
        <servlet-name>action</servlet-name>
        <url-pattern>*.do</url-pattern>
      </servlet-mapping>
       <session-config>
    		<session-timeout>30</session-timeout>
    	</session-config>
    	<welcome-file-list>
    		<welcome-file>index.jsp</welcome-file>
    		<welcome-file>/Acceuil.do</welcome-file>
    	</welcome-file-list>
    	<error-page>
    		<error-code>500</error-code>
    		<location>/Erreur.jsp</location>
    	</error-page>
     
    <!-- 
      <taglib>
        <taglib-uri>/tags/struts-bean</taglib-uri>
        <taglib-location>/WEB-INF/struts-bean.tld</taglib-location>
      </taglib>
     
      <taglib>
        <taglib-uri>/tags/struts-html</taglib-uri>
        <taglib-location>/WEB-INF/struts-html.tld</taglib-location>
      </taglib>
     
      <taglib>
        <taglib-uri>/tags/struts-logic</taglib-uri>
        <taglib-location>/WEB-INF/struts-logic.tld</taglib-location>
      </taglib>
     
      <taglib>
        <taglib-uri>/tags/struts-nested</taglib-uri>
        <taglib-location>/WEB-INF/struts-nested.tld</taglib-location>
      </taglib>
     
      <taglib>
        <taglib-uri>/tags/struts-tiles</taglib-uri>
        <taglib-location>/WEB-INF/struts-tiles.tld</taglib-location>
      </taglib>
     
      <taglib>
          <taglib-uri>http://displaytag.sf.net</taglib-uri> 
     
          <taglib-location>/WEB-INF/displaytag.tld</taglib-location>
       </taglib> 
     
       -->
     
      <taglib>
        <taglib-uri>http://java.sun.com/jsp/jstl/core</taglib-uri>
        <taglib-location>/WEB-INF/c.tld</taglib-location>
      </taglib>
     
      <taglib>
        <taglib-uri>http://java.sun.com/jsp/jstl/fmt</taglib-uri>
        <taglib-location>/WEB-INF/fmt.tld</taglib-location>
      </taglib>
     
      <taglib>
        <taglib-uri>http://java.sun.com/jsp/jstl/xml</taglib-uri>
        <taglib-location>/WEB-INF/x.tld</taglib-location>
      </taglib>
     
      <taglib>
        <taglib-uri>http://java.sun.com/jsp/jstl/sql</taglib-uri>
        <taglib-location>/WEB-INF/sql.tld</taglib-location>
      </taglib>
      <taglib>
        <taglib-uri>http://java.sun.com/jsp/jstl/functions</taglib-uri>
        <taglib-location>/WEB-INF/fn.tld</taglib-location>
      </taglib>
     
    </web-app>

    il y a des erreurs sur les taglib
    parce que vraiment les tld n'existent pas dans le WEB-INF !!
    meme si j'ai mis le jstl-1.2.jar dans le fichier lib , est-ce que j'ai raté quelque chose !!!

  2. #22
    Expert éminent

    Femme Profil pro
    Inscrit en
    Juillet 2005
    Messages
    5 793
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : France

    Informations forums :
    Inscription : Juillet 2005
    Messages : 5 793
    Points : 7 778
    Points
    7 778
    Par défaut
    En fait, je me suis trompée dans mon précédent message sur la version de la JSTL.
    C'est la 1.1 et non la 1.2 qu'il faut télécharger. Désolée.

    Sinon, en J2EE 1.4, il n'est pas utile de définir les tld dans les balises taglib et de copier les tld sous WEB-INF.
    Tu peux directement spécifier les uri des tld dans les directives taglib des jsp comme ceci :

    pour la JSTL 1.1 :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/xml" prefix="xml" %>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql" %>
    pour Struts-Layout :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    <%@ taglib uri="http://struts.application-servers.com/layout" prefix="layout" %>
    pour Struts 1.2 :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    <%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
    <%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
    <%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
    <%@ taglib uri="http://struts.apache.org/tags-nested" prefix="nested" %>
    pour DisplayTag :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    <%@ taglib uri="http://displaytag.sf.net" prefix="display" %>
    Mais, si vraiment tu souhaites garder les balises taglib dans le web.xml et les tld sous WEB-INF, il faut englober les balises taglib du web.xml dans une balise <jsp-config>.

  3. #23
    Membre à l'essai
    Inscrit en
    Septembre 2009
    Messages
    36
    Détails du profil
    Informations forums :
    Inscription : Septembre 2009
    Messages : 36
    Points : 20
    Points
    20
    Par défaut
    j'ai fait tout ce que tu m'as suggeré.

    pour le web.xml :

    Code xml : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    <?xml version="1.0" encoding="ISO-8859-1" ?>
     
     
    <web-app xmlns="http://java.sun.com/xml/ns/j2ee"
    	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    	xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
    	version="2.4">
    	<filter>
    		<description>
    		</description>
    		<display-name>FilterImage</display-name>
    		<filter-name>FilterImage</filter-name>
    		<filter-class>Filters.FilterImage</filter-class>
    		<init-param>
            <param-name>IMAGE_REPOSITORY</param-name>
            <param-value>C:\\tmp</param-value>
            </init-param>
     
    	</filter>
    	<filter-mapping>
    		<filter-name>FilterImage</filter-name>
    		<url-pattern>/virtual/images/*</url-pattern>
    	</filter-mapping>
     
     
    	  <servlet>
         <servlet-name>action</servlet-name>
        <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
        <init-param>
          <param-name>config</param-name>
          <param-value>/WEB-INF/struts-config.xml</param-value>
        </init-param>
        <init-param>
          <param-name>debug</param-name>
          <param-value>2</param-value>
        </init-param>
        <init-param>
          <param-name>detail</param-name>
          <param-value>2</param-value>
        </init-param>
        <init-param>
    			<param-name>validate</param-name>
    			<param-value>true</param-value>
    		</init-param>
    		<init-param>
    			<param-name>multipartClass</param-name>
    			<param-value>
    				org.apache.struts.upload.CommonsMultipartRequestHandler
    			</param-value>
    		</init-param>
     
        <load-on-startup>2</load-on-startup>
      </servlet>
     
      <servlet-mapping>
        <servlet-name>action</servlet-name>
        <url-pattern>*.do</url-pattern>
      </servlet-mapping>
       <session-config>
    		<session-timeout>30</session-timeout>
    	</session-config>
    	<welcome-file-list>
    		<welcome-file>index.jsp</welcome-file>
    		<welcome-file>/Acceuil.do</welcome-file>
    	</welcome-file-list>
    	<error-page>
    		<error-code>500</error-code>
    		<location>/Erreur.jsp</location>
    	</error-page>
     
    <jsp-config>
      <taglib>
        <taglib-uri>/tags/struts-bean</taglib-uri>
        <taglib-location>/WEB-INF/struts-bean.tld</taglib-location>
      </taglib>
     
      <taglib>
        <taglib-uri>/tags/struts-html</taglib-uri>
        <taglib-location>/WEB-INF/struts-html.tld</taglib-location>
      </taglib>
     
      <taglib>
        <taglib-uri>/tags/struts-logic</taglib-uri>
        <taglib-location>/WEB-INF/struts-logic.tld</taglib-location>
      </taglib>
     
      <taglib>
        <taglib-uri>/tags/struts-nested</taglib-uri>
        <taglib-location>/WEB-INF/struts-nested.tld</taglib-location>
      </taglib>
     
      <taglib>
        <taglib-uri>/tags/struts-tiles</taglib-uri>
        <taglib-location>/WEB-INF/struts-tiles.tld</taglib-location>
      </taglib>
     
      <taglib>
          <taglib-uri>http://displaytag.sf.net</taglib-uri> 
     
          <taglib-location>/WEB-INF/displaytag.tld</taglib-location>
       </taglib> 
     
     
     
      <taglib>
        <taglib-uri>http://java.sun.com/jsp/jstl/core</taglib-uri>
        <taglib-location>/WEB-INF/c.tld</taglib-location>
      </taglib>
     
      <taglib>
        <taglib-uri>http://java.sun.com/jsp/jstl/fmt</taglib-uri>
        <taglib-location>/WEB-INF/fmt.tld</taglib-location>
      </taglib>
     
      <taglib>
        <taglib-uri>http://java.sun.com/jsp/jstl/xml</taglib-uri>
        <taglib-location>/WEB-INF/x.tld</taglib-location>
      </taglib>
     
      <taglib>
        <taglib-uri>http://java.sun.com/jsp/jstl/sql</taglib-uri>
        <taglib-location>/WEB-INF/sql.tld</taglib-location>
      </taglib>
      <taglib>
        <taglib-uri>http://java.sun.com/jsp/jstl/functions</taglib-uri>
        <taglib-location>/WEB-INF/fn.tld</taglib-location>
      </taglib>
    </jsp-config>
    </web-app>
    ********************************************

    pour la jsp :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
        pageEncoding="ISO-8859-1"%>
     
    <%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
    <%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
    <%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
    <%@ taglib uri="http://struts.apache.org/tags-nested" prefix="nested" %>
    <%@ taglib uri="http://struts.application-servers.com/layout" prefix="layout" %>
    <%@ taglib uri="http://displaytag.sf.net" prefix="display" %>
     
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
     
    <%@page import="StrutsAction.Form.ProduitsForm"%><html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <link rel="stylesheet"
    href="<%=request.getContextPath()%>/styles.css" type="text/css" />
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
    <title>Insert title here</title>
    </head>
    <body>
     
    <h2 align="center" style="color: blue;height: 80px" >** Liste des Produits **</h2>
     
    <div align="right" style="height: 80px;"><html:link action="/ComboProduits"><html:image src="images/glace.png" style="width:40px;height:40px" align="center"> </html:image> Ajouter un Produit </html:link> </div>
    <layout:pager maxPageItems="6" align="center" >
     
    <layout:collection name="ProduitsResult" id="ProduitsForm" styleClass="listeGab1" styleClass2="listeGab2" width="90%"  align="center">
     
    <layout:collectionItem property="id" title="Produits.id.lbl" sortable="true" ></layout:collectionItem>
    <layout:collectionItem property="nom" title="Produits.nom.lbl" sortable="true"></layout:collectionItem>
    <layout:collectionItem title="Produits.picture.lbl" ><layout:img src="./virtual/images/${ProduitsFrom.picture}" /> </layout:collectionItem>
    <layout:collectionItem property="prix" title="Produits.prix.lbl" sortable="true" ></layout:collectionItem>
    <layout:collectionItem property="quantite" title="Produits.quantite.lbl" sortable="true"></layout:collectionItem>
    <layout:collectionItem property="type_id" title="Produits.typde_id.lbl" sortable="true"></layout:collectionItem>
     
    <layout:collectionItem><layout:link action="/DelProduits" paramName="ProduitsForm" paramProperty="id" paramId="id"><img style="border:0" src="images/cancel_f2.png" title="Supprimer" /></layout:link></layout:collectionItem>
    <layout:collectionItem><layout:link action="/serchProduits" paramName="ProduitsForm" paramProperty="id" paramId="id"><img style="border:0" src="images/Configuration_icon.gif" height="50" width="50" title="Modifier"/></layout:link></layout:collectionItem>
    </layout:collection>
     
    </layout:pager> 
     
     
    </body>
    </html>
    pour le Bean ProduitsForm :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    package StrutsAction.Form;
     
    import java.io.Serializable;
    import java.util.Date;
     
    import javax.servlet.http.HttpServletRequest;
     
    import org.apache.struts.action.ActionErrors;
    import org.apache.struts.action.ActionMapping;
    import org.apache.struts.action.ActionMessage;
    import org.apache.struts.upload.FormFile;
    import org.apache.struts.validator.ValidatorForm;
     
    import HibernateForms.Produits;
     
    public class ProduitsForm extends ValidatorForm implements Serializable {
     
    	private int id;
    	private String nom;
    	private String picture;
    	private static FormFile myFile;
    	private	String prix;
    	private	int quantite;
    	private	int type_id;
     
     
     
    	public int getId() {
    		return id;
    	}
     
     
    	public void setId(int id) {
    		this.id = id;
    	}
     
     
    	public String getNom() {
    		return nom;
    	}
     
     
    	public void setNom(String nom) {
    		this.nom = nom;
    	}
     
     
    	public String getPicture() {
    		return picture;
    	}
     
     
    	public void setPicture(String picture) {
    		this.picture = picture;
    	}
     
     
    	public FormFile getMyFile() {
    		return myFile;
    	}
     
     
    	public void setMyFile(FormFile myFile) {
    		ProduitsForm.myFile = myFile;
    	}
     
     
    	public String getPrix() {
    		return prix;
    	}
     
     
    	public void setPrix(String prix) {
    		this.prix = prix;
    	}
     
     
    	public int getQuantite() {
    		return quantite;
    	}
     
     
    	public void setQuantite(int quantite) {
    		this.quantite = quantite;
    	}
     
     
    	public int getType_id() {
    		return type_id;
    	}
     
     
    	public void setType_id(int type_id) {
    		this.type_id = type_id;
    	}
     
     
    	public ActionErrors validate(ActionMapping mapping, HttpServletRequest request) 
        {
           ActionErrors errors = new ActionErrors();
     
           if (nom == null || nom.length() < 3) {
    			errors.add("blocDesErreurs1", new ActionMessage("error.nom"));
    		}
     
    		if(myFile.getFileName()==null || myFile.getFileName() == null || "".equals(myFile.getFileName().trim())){
    			errors.add("blocDesErreurs1", new ActionMessage("error.file.format"));
    		}
     
    		return errors;
    	}
    }
    il n y a aucune erreur sur le web.xml ou sur la jsp, mais toujours le resultat est la meme , les cadres des images s'affichent sans les images.


  4. #24
    Membre à l'essai
    Inscrit en
    Septembre 2009
    Messages
    36
    Détails du profil
    Informations forums :
    Inscription : Septembre 2009
    Messages : 36
    Points : 20
    Points
    20
    Par défaut
    je rectifie une erreur sur la jsp c form ou lieu de from :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    <layout:img src="./virtual/images/${ProduitsForm.picture}" />

  5. #25
    Expert éminent

    Femme Profil pro
    Inscrit en
    Juillet 2005
    Messages
    5 793
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : France

    Informations forums :
    Inscription : Juillet 2005
    Messages : 5 793
    Points : 7 778
    Points
    7 778
    Par défaut
    Si tu codes ./virtual/images/${ProduitsForm.picture} dans l'attribut src du tag layout:img, cela signifie que tu as laissé le filtre proposé par OButterlin.
    Est-ce bien le cas ?

    Où sont créées tes images finalement ?

    Peux-tu montrer le code html généré pour le tag img pour voir si l'EL ${ProduitsForm.picture} est bien interprétée ?

    Et dans la propriété picture, y-a-t'il le nom complet de l'image avec l'extension ?

  6. #26
    Membre à l'essai
    Inscrit en
    Septembre 2009
    Messages
    36
    Détails du profil
    Informations forums :
    Inscription : Septembre 2009
    Messages : 36
    Points : 20
    Points
    20
    Par défaut
    j'ai enlever le filtre maintenant . et pour le fichier ou se trouve les image ce trouve dans le dossier " C:\tmp "

    j'ai essayer cela j'ai donner le nom d'une image et j'aiessayer les codes suivants :

    <layout:img src="C:\tmp\495305886.jpg" />
    et
    <layout:img src="C:\\tmp\495305886.jpg" />
    et
    <layout:img src="C:\\tmp\\495305886.jpg" />

    ???!! ca ne marche pas meme .

  7. #27
    Membre à l'essai
    Inscrit en
    Septembre 2009
    Messages
    36
    Détails du profil
    Informations forums :
    Inscription : Septembre 2009
    Messages : 36
    Points : 20
    Points
    20
    Par défaut
    ca marche juste dans le cas , un dossier dans le projet par exemple "photos"

    <html:img src="photos/495305886.jpg" />

    mais le cas dans un emplacement comme "c:\tmp " ca ne marche pas

  8. #28
    Membre à l'essai
    Inscrit en
    Septembre 2009
    Messages
    36
    Détails du profil
    Informations forums :
    Inscription : Septembre 2009
    Messages : 36
    Points : 20
    Points
    20
    Par défaut
    voila j'ai resolue tous ce probleme

    j'ai mit mes images dans un répertoire de mon projet "photos"

    est le code est devenu comme suite:

    <layout:collectionItem title="Produits.picture.lbl" sortable="true"><layout:img src="photos/${ProduitsForm.picture}" width="40px" height="40px" /> </layout:collectionItem>

    est dans la jsp upload j'ai changer le chemin des images a stocker :

    File fileToCreate = new File (getServlet().getServletContext().getRealPath("/"+"photos"), fileName);

    au lieu de :

    File fileToCreate = new File("C:\\tmp", fileName);

    est le tour est jouer

    Merci pour votre aide

  9. #29
    Membre à l'essai
    Inscrit en
    Septembre 2009
    Messages
    36
    Détails du profil
    Informations forums :
    Inscription : Septembre 2009
    Messages : 36
    Points : 20
    Points
    20
    Par défaut
    Quand je verifie le repertoire "photos" je ne trouve aucun images !!? pourtant quand je lance le projet et j'affichent les produits les images s'affichent ?? je ne sais pas ou sont stocker les images vraiment !!!

  10. #30
    Membre à l'essai
    Inscrit en
    Septembre 2009
    Messages
    36
    Détails du profil
    Informations forums :
    Inscription : Septembre 2009
    Messages : 36
    Points : 20
    Points
    20
    Par défaut
    c bon j'ai trouver ou se trouve les images dans le worksapce

    Merci pour tous mes amis

+ Répondre à la discussion
Cette discussion est résolue.
Page 2 sur 2 PremièrePremière 12

Discussions similaires

  1. [Struts 1.3.10] Afficher des images LOCALES
    Par Beben45 dans le forum Struts 1
    Réponses: 0
    Dernier message: 27/12/2009, 20h53
  2. [1.x] affiche des images de layout
    Par benakacha dans le forum Symfony
    Réponses: 3
    Dernier message: 07/10/2009, 12h32
  3. [JLabel] Afficher des images
    Par Bouki dans le forum Composants
    Réponses: 8
    Dernier message: 25/03/2005, 11h38
  4. Afficher des images sous directX
    Par cyberlewis dans le forum DirectX
    Réponses: 17
    Dernier message: 12/07/2004, 13h07
  5. [TP][MULTI-PROBLEME]Comment afficher des images pcx
    Par mikoeur dans le forum Turbo Pascal
    Réponses: 7
    Dernier message: 24/10/2002, 14h57

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo