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

Servlets/JSP Java Discussion :

File Not Found


Sujet :

Servlets/JSP Java

  1. #1
    Membre averti Avatar de Gregory.M
    Profil pro
    Inscrit en
    Novembre 2007
    Messages
    684
    Détails du profil
    Informations personnelles :
    Localisation : France, Paris (Île de France)

    Informations forums :
    Inscription : Novembre 2007
    Messages : 684
    Points : 309
    Points
    309
    Par défaut File Not Found
    Bonjours,
    Voici mon soucis: dans ma index.jsp j'utilise une classe ("jdom") qui me permet de parcourir un fichier xml. mais le probleme est que lorsque je lance mon projet web, le compilateur va chercher mon fichier .xml dans C:// progfiles/eclipes/... au lieu d'aller le chercher dans mon \workspace\MonProjet\...

    comment puis je faire pour empecher cela?

    j'ai fait des tests pour chercher le probleme, le ligne importante est: document = sxb.build...
    Puis les infos de la console indiquant la ou il va chercher le fichier.

    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
    	   //On crée une instance de SAXBuilder
    	      SAXBuilder sxb = new SAXBuilder();
    	      try
    	      {
    	         //On crée un nouveau document JDOM avec en argument le fichier XML
    	         //Le parsing est terminé ;)
    	         document = sxb.build(new File("games.xml"));
     
     
    	         System.out.println("Doc" + (document == null));
    	      }
    	      catch(Exception e)
    	      {
    	    	  e.printStackTrace();
    	    	  System.out.println(e);
     
    	      }
     
    	      //On initialise un nouvel élément racine avec l'élément racine du document.
    	      racine = document.getRootElement();
       }
    ...
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:584)
    at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
    at java.lang.Thread.run(Thread.java:619)
    java.io.FileNotFoundException: C:\Program Files\eclipse\games.xml (Le fichier spécifié est introuvable)
    false
    [Element: <games/>]
    []
    voila

  2. #2
    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
    Jette un oeil à cette discussion.

  3. #3
    Membre averti Avatar de Gregory.M
    Profil pro
    Inscrit en
    Novembre 2007
    Messages
    684
    Détails du profil
    Informations personnelles :
    Localisation : France, Paris (Île de France)

    Informations forums :
    Inscription : Novembre 2007
    Messages : 684
    Points : 309
    Points
    309
    Par défaut :/
    jai essayé ce que tu as dit c_nvy mais ca ne marche toujours pas.
    java.lang.NullPointerException
    at Prog.EPlayGames.Class.JDOM.TheFile(JDOM.java:86)
    at org.apache.jsp.pages.index_jsp._jspService(index_jsp.java:88)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:393)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:263)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:584)
    at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
    at java.lang.Thread.run(Thread.java:619)
    java.lang.NullPointerException
    java.lang.NullPointerException
    at Prog.EPlayGames.Class.JDOM.TheFile(JDOM.java:86)
    at org.apache.jsp.pages.index_jsp._jspService(index_jsp.java:101)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:393)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:263)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:584)
    at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
    at java.lang.Thread.run(Thread.java:619)
    java.lang.NullPointerException
    false
    [Element: <games/>]
    []

  4. #4
    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
    Ton fichier games.xml est-il sous WEB-INF/classes ?
    Si ce n'est pas le cas, où est-il exactement ?

  5. #5
    Membre averti Avatar de Gregory.M
    Profil pro
    Inscrit en
    Novembre 2007
    Messages
    684
    Détails du profil
    Informations personnelles :
    Localisation : France, Paris (Île de France)

    Informations forums :
    Inscription : Novembre 2007
    Messages : 684
    Points : 309
    Points
    309
    Par défaut
    il se trouve dans Webcontent/WEB-INF
    je n'ai pas de dossier/classes, je dois le créer?

  6. #6
    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
    Je suppose donc que le répertoire classes est dans le répertoire build.

    Si ton fichier est sous WEB-INF, essaie ceci :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    document = sxb.build(new File("WEB-INF/games.xml"));

  7. #7
    Membre averti Avatar de Gregory.M
    Profil pro
    Inscrit en
    Novembre 2007
    Messages
    684
    Détails du profil
    Informations personnelles :
    Localisation : France, Paris (Île de France)

    Informations forums :
    Inscription : Novembre 2007
    Messages : 684
    Points : 309
    Points
    309
    Par défaut
    Salut,

    si je met
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    document = sxb.build(new File("WEB-INF/games.xml"));
    il va essayer de trouver le fichier dans le répertoire Eclipse, alors qu'il se trouve dans workspace

    Voila ce que j'ai avec la ligne au dessus :
    java.io.FileNotFoundException: C:\Program Files\eclipse\WEB-INF\games.xml (Le chemin d'accès spécifié est introuvable)

  8. #8
    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
    Ben moi, je ne connais que deux moyens :

    soit ton code qui permet de lire le fichier est dans une classe Java et donc, il faut mettre le fichier sous WEB-INF/classes et passer par le ClassLoader pour retrouver le path :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    String filename="games.xml" ;
    ClassLoader classLoader=this.getClass().getClassLoader();
    File file = new File(classLoader.getResource(filename).getFile());
    soit ton code est dans une servlet et tu peux utiliser la méthode getRealPath de ServletContext pour accèder au fichier présent sous WEB-INF :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    String file=this.getServletContext().getRealPath("/WEB-INF/games.xml");
    document = sxb.build(new File(file);

  9. #9
    Membre averti Avatar de Gregory.M
    Profil pro
    Inscrit en
    Novembre 2007
    Messages
    684
    Détails du profil
    Informations personnelles :
    Localisation : France, Paris (Île de France)

    Informations forums :
    Inscription : Novembre 2007
    Messages : 684
    Points : 309
    Points
    309
    Par défaut
    Merci pour ton aide.
    je vais réessayer les 2 méthodes.

  10. #10
    Membre averti Avatar de Gregory.M
    Profil pro
    Inscrit en
    Novembre 2007
    Messages
    684
    Détails du profil
    Informations personnelles :
    Localisation : France, Paris (Île de France)

    Informations forums :
    Inscription : Novembre 2007
    Messages : 684
    Points : 309
    Points
    309
    Par défaut
    bonsoir,


    je viens d'essayer le code de c_nvy et je me retrouve maintenant avec FileNotFoundException...


    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
    	public void TheFile(){
    		//On crée une instance de SAXBuilder
    		SAXBuilder sxb = new SAXBuilder();
    		try
    		{
    			//On crée un nouveau document JDOM avec en argument le fichier XML
    			//Le parsing est terminé ;
     
    			String filename="games.xml" ;
    			ClassLoader classLoader=this.getClass().getClassLoader();
    			File file = new File(classLoader.getResource(filename).getFile());
    			document = sxb.build(file);
     
     
    			System.out.println("Doc" + (document == null));
    		}
    		catch(Exception e)
    		{
    			e.printStackTrace();
    			System.out.println(e);
     
    		}
    	}


    at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
    at java.lang.Thread.run(Thread.java:619)
    java.io.FileNotFoundException: C:\Documents%20and%20Settings\Greg\workspace\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\wtpwebapps\EPlayProject\WEB-INF\classes\games.xml (Le chemin d'accès spécifié est introuvable)
    false
    [Element: <games/>]
    []

  11. #11
    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
    Cela signifie que games.xml n'est pas sous WEB-INF/classes.

  12. #12
    Membre averti Avatar de Gregory.M
    Profil pro
    Inscrit en
    Novembre 2007
    Messages
    684
    Détails du profil
    Informations personnelles :
    Localisation : France, Paris (Île de France)

    Informations forums :
    Inscription : Novembre 2007
    Messages : 684
    Points : 309
    Points
    309
    Par défaut
    c'est normal que dans WEB-INF je ne vois pas le dossier/classes?
    au départ je ne l'avais pas alors j'ai fait un clic droit sur WEB-INF et ajouter un "folder" ...

  13. #13
    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
    Sous Eclipse, en perspective Java ou J2EE, il est normal que tu ne vois pas le répertoire classes sous WEB-INF mais peux-tu vérifier qu'il existe bien sous C:\Documents and Settings\Greg\workspace\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\wtpwebapps\EPlayProject\WEB-INF ?

  14. #14
    Membre averti Avatar de Gregory.M
    Profil pro
    Inscrit en
    Novembre 2007
    Messages
    684
    Détails du profil
    Informations personnelles :
    Localisation : France, Paris (Île de France)

    Informations forums :
    Inscription : Novembre 2007
    Messages : 684
    Points : 309
    Points
    309
    Par défaut
    C'est ce que j'ai fait, /classes n'existait pas alors je l'ai créé

  15. #15
    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
    Et si tu mets ton fichier games.xml sous build/classes, ça donne quoi ?

  16. #16
    Membre averti Avatar de Gregory.M
    Profil pro
    Inscrit en
    Novembre 2007
    Messages
    684
    Détails du profil
    Informations personnelles :
    Localisation : France, Paris (Île de France)

    Informations forums :
    Inscription : Novembre 2007
    Messages : 684
    Points : 309
    Points
    309
    Par défaut
    je n'ai plus de message d'erreur mais ca ne marche toujours pas
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    Docfalse
    Docfalse
    false
    [Element: <games/>]
    []

    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
    public void TheFile(){
    		//On crée une instance de SAXBuilder
    		SAXBuilder sxb = new SAXBuilder();
    		try
    		{
    			//On crée un nouveau document JDOM avec en argument le fichier XML
    			//Le parsing est terminé ;
     
    			String filename="games.xml" ;
    			ClassLoader classLoader=this.getClass().getClassLoader();
    			File file = new File(classLoader.getResource(filename).getFile());
    			document = sxb.build(new File("games.xml"));
     
     
    			System.out.println("Doc" + (document == null));
    		}
    		catch(Exception e)
    		{
    			e.printStackTrace();
    			System.out.println(e);
     
    		}
    	}

  17. #17
    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
    Vu qu'il t'affiche Docfalse, cela signifie que document n'est pas égal à null. Il arrive donc à lire ton fichier.

  18. #18
    Membre averti Avatar de Gregory.M
    Profil pro
    Inscrit en
    Novembre 2007
    Messages
    684
    Détails du profil
    Informations personnelles :
    Localisation : France, Paris (Île de France)

    Informations forums :
    Inscription : Novembre 2007
    Messages : 684
    Points : 309
    Points
    309
    Par défaut
    oui mais il m'affiche [Element: <games/>] ce qui signifie qu'il ne récupere rien...


    dans cette classe j'utilise "TheFile" et GetCollectionOfGame
    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
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    package Prog.EPlayGames.Class;
    import java.io.*;
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.LinkedList;
    import java.util.List;
     
    import org.jdom.*;
    import org.jdom.input.SAXBuilder;
    import org.jdom.output.*;
     
    public class JDOM
    {
    	//Nous allons commencer notre arborescence en créant la racine XML
    	//qui sera ici "personnes".
     
    	static Element racine = new Element("games");
    	static List<Game> CollectionOfGame = new LinkedList();
     
     
    	public JDOM(){
     
    	}
     
     
    	//On crée un nouveau Document JDOM basé sur la racine que l'on vient de créer
    	static org.jdom.Document document = new Document(racine);
     
     
     
    	public void TheFile(){
    		//On crée une instance de SAXBuilder
    		SAXBuilder sxb = new SAXBuilder();
    		try
    		{
    			//On crée un nouveau document JDOM avec en argument le fichier XML
    			//Le parsing est terminé ;
     
    			String filename="games.xml" ;
    			ClassLoader classLoader=this.getClass().getClassLoader();
    			File file = new File(classLoader.getResource(filename).getFile());
    			document = sxb.build(new File("games.xml"));
     
     
    			System.out.println("Doc" + (document == null));
    		}
    		catch(Exception e)
    		{
    			e.printStackTrace();
    			System.out.println(e);
     
    		}
    	}
     
     
     
    	public void Save(String id, String name, String plateform, String price, String description, String url){
    		//On crée un nouvel Element etudiant et on l'ajoute
    		//en temps qu'Element de racine
    		Element game = new Element("game");
    		racine.addContent(game);
     
    		//On crée un nouvel Attribut classe et on l'ajoute à etudiant
    		//grâce à la méthode setAttribute
    		//Attribute classe = new Attribute("classe","P2");
    		//game.setAttribute(classe);
     
    		//On crée un nouvel Element nom, on lui assigne du texte
    		//et on l'ajoute en temps qu'Element de etudiant
    		Element a = new Element("id");
    		a.setText("id");
    		game.addContent(a);
     
    		Element b = new Element("name");
    		b.setText("name");
    		game.addContent(b);
     
    		Element c = new Element("plateform");
    		c.setText("plateform");
    		game.addContent(c);
     
    		Element d = new Element("price");
    		d.setText("price");
    		game.addContent(d);
     
    		Element e = new Element("description");
    		e.setText("description");
    		game.addContent(e);
     
    		Element f = new Element("url");
    		f.setText("url");
    		game.addContent(f);
    		try
    		{
    			//On utilise ici un affichage classique avec getPrettyFormat()
    			XMLOutputter out = new XMLOutputter(Format.getPrettyFormat());
    			//Remarquez qu'il suffit simplement de créer une instance de FileOutputStream
    			//avec en argument le nom du fichier pour effectuer la sérialisation.
    			out.output(document, new FileOutputStream("games.xml"));
    		}
    		catch (java.io.IOException exc){}
    	}
     
     
     
     
    	//Ajouter cette méthodes à la classe JDOM2
    	public List GetCollectionOfGame()
    	{
    		//On crée une List contenant tous les noeuds "etudiant" de l'Element racine
    		List listGames = racine.getChildren("game");
     
    		System.out.println(racine == null);
    		System.out.println(racine);
    		System.out.println(listGames);
     
    		//On crée un Iterator sur notre liste
    		Iterator i = listGames.iterator();
     
    		List MyCollection = new LinkedList();
    		while(i.hasNext())
    		{
    			//pouvoir utiliser les méthodes propres aux Element comme :
    			//selectionner un noeud fils, modifier du texte, etc...
    			Element courant = (Element)i.next();
    			System.out.println(courant);												//On recrée l'Element courant à chaque tour de boucle afin de
    			//On affiche le nom de l'element courant
    			Game AGame = new Game();
    			AGame.setName(courant.getChild("name").getText());
    			AGame.setDescription(courant.getChild("description").getText());
    			AGame.setId(courant.getChild("id").getText());
    			AGame.setPlateform(courant.getChild("plateform").getText());
    			AGame.setPrice(courant.getChild("price").getText());
    			AGame.setUrl(courant.getChild("url").getText());
    			System.out.println(AGame);
    			CollectionOfGame.add(AGame);
    		}
    		return CollectionOfGame;
    	}
     
     
    }
    je comprends pas... :s

  19. #19
    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
    Je ne connais pas JDOM mais je vois que tu as appelé ton élément racine games ici :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    	static Element racine = new Element("games");
    et que tu essaies d'afficher les noeuds de l'élément racine game :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    		List listGames = racine.getChildren("game");
    Avec games, ça devrait mieux fonctionner je pense.

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    		List listGames = racine.getChildren("games");

  20. #20
    Membre averti Avatar de Gregory.M
    Profil pro
    Inscrit en
    Novembre 2007
    Messages
    684
    Détails du profil
    Informations personnelles :
    Localisation : France, Paris (Île de France)

    Informations forums :
    Inscription : Novembre 2007
    Messages : 684
    Points : 309
    Points
    309
    Par défaut
    Je pense que j'ai des erreurs dans mon parsage...
    je vais vérifier ca.

    merci de m'aider

+ Répondre à la discussion
Cette discussion est résolue.
Page 1 sur 2 12 DernièreDernière

Discussions similaires

  1. table externe - file not found
    Par juin29 dans le forum Oracle
    Réponses: 9
    Dernier message: 07/12/2010, 12h52
  2. [Error] File not found: 'Unit1.DFM'
    Par aliwassem dans le forum Delphi
    Réponses: 1
    Dernier message: 08/04/2007, 08h13
  3. File not found
    Par mattyeux dans le forum ASP
    Réponses: 7
    Dernier message: 14/02/2007, 23h12
  4. Exception: TXMLDocument.LoadXMLFile File not found
    Par powerlog dans le forum XMLRAD
    Réponses: 12
    Dernier message: 09/08/2005, 11h29
  5. [Quartz][Tomcat] Jobs.xml file not found exception
    Par Arnaud Giuliani dans le forum Tomcat et TomEE
    Réponses: 1
    Dernier message: 05/08/2005, 10h20

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