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

avec Java Discussion :

(linux) rmi "cannot be resolved to a type"


Sujet :

avec Java

  1. #1
    Membre du Club
    Inscrit en
    Mai 2008
    Messages
    55
    Détails du profil
    Informations forums :
    Inscription : Mai 2008
    Messages : 55
    Points : 40
    Points
    40
    Par défaut (linux) rmi "cannot be resolved to a type"
    Salut la communauté,
    Je travail sur une application en rmi. A partir d'une interface graphique je recupere les info qui seront envoyé vers un serveur et serviront à creer des fichiers .
    J'ai creer deux paquetages: frame qui contient le code de l'interface graphique et la classe Iclient.serveur qui contient la classe Client et IClientImpl
    Client.java
    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
     
    package serveur;
     
    public class Client implements java.io.Serializable {
     
    	private String nom,prenom,adresse,canal;
        private int jour,mois,annee,heure,minute;
        private double tel;
    	public Client(String prenom,String nom,String adresse,double tel,int jour,int mois,int annee,int heure,int minute,String canal) 
    	{
    		this.prenom=prenom;
    		this.nom=nom;
    		this.adresse=adresse;
    		this.tel=tel;
    		this.jour=jour;
    		this.mois=mois;
    		this.annee=annee;
    		this.heure=heure;
    		this.minute=minute;
    		this.canal=canal;
    	}
     
     
    	 public String getNom()
    	 {
    		 return nom;
    	 }
     
    	 public String getPrenom()
    	 {
    		 return prenom;
    	 }
     
    	 public String getAdresse()
    	 {
    		 return adresse;
    	 }
     
    	 public String getCanal()
    	 {
    		 return canal;
    	 }
     
    	 public double getTel()
    	 {
    		 return tel;
    	 }
     
    	 public int getJour()
    	 {
    		 return jour;
    	 }
     
    	 public int getMois()
    	 {
    		 return mois;
    	 }
     
    	 public int getAnnee()
    	 {
    		 return annee;
    	 }
     
    	 public int getHeure()
    	 {
    		 return heure;
    	 }
     
    	 public int getMinute()
    	 {
    		 return minute;
    	 }
    	public static void main(String[] args) {
     
     
    	}
     
    }
    IClientImpl.java
    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
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
     
    package serveur;
    import java.io.*;
    import java.rmi.*;
    import java.rmi.server.UnicastRemoteObject;
    import java.sql.*;
     
    import java.util.*;
    import java.util.Date;
     
    import javax.swing.JOptionPane;
     
    import client.ICompte;
     
    public class ICompteImpl extends UnicastRemoteObject implements ICompte{
     
    	/**
             * @param args
             */
    	//static Hashtable comptes=Compte.getHashtable();
    	boolean creer,trouve;
    	Connection connex;
     
    	String sep = File.separator ;
    	Compte c;
    	public ICompteImpl()throws RemoteException{
    		super();
    	}
    	public boolean creerCompte(String nom,String prenom,double solde,double decouvert,String numero,String type)throws RemoteException{
    		System.setSecurityManager(new RMISecurityManager());
    		c=new Compte(nom,prenom,solde,decouvert,numero,type);
    		//creation fichier indiv
    		File fic = new File ("C:"+sep+"rmi"+sep+"rmi2"+sep+"clients"+sep+"client"+c.getNumeroCompte()+".txt");
    			try {
    			if(!fic.exists()){
    		creer=fic.createNewFile ( );
    		}else{
    			JOptionPane.showMessageDialog (null,"Ce compte existe d�ja!","Message d'alerte",
    					JOptionPane.INFORMATION_MESSAGE, null);
    		}
    		}
    		catch ( IOException ex)
    		{ex.printStackTrace() ;}
     
    		//ecriture dan le fic indiv
     
    		try {
    			Date date=new Date();
    			// TODO Auto-generated catch block
    	     	FileWriter fw=new FileWriter(fic,true);
    			BufferedWriter bw = new BufferedWriter(fw);
    			bw.write("         HISTORIQUE DU COMPTE N�: "+numero+"\n");
    			bw.write("\n");
    			bw.write("DATE D'OUVERTURE : "+date+"\n");
    			bw.write("Nom titulaire : "+nom+"\n");
    			bw.write("Prenom titulaire : "+prenom+"\n");
    			bw.write("Solde : "+solde+"\n");
    			bw.write("Decouvert : "+decouvert+"\n");
    			bw.write("Numero : "+numero+"\n");
    			bw.write("Type de compte : "+type+"\n");
    			bw.newLine();
            	bw.close();
    			fw.close();
    		}
    		catch(IOException e2){}
     
    		//fichier commun
    		File fic2 = new File ("C:"+sep+"rmi"+sep+"rmi2"+sep+"clients"+sep+"clientbin"+c.getNumeroCompte()+".txt");
     
    			try {
    			if(!fic2.exists()){
    		creer=fic2.createNewFile ( );
    		}
    			FileOutputStream fos=new FileOutputStream(fic2);
    			ObjectOutputStream oos= new ObjectOutputStream(fos);
    			oos.writeObject(c);
    		}
    		catch ( IOException ex)
    		{ex.printStackTrace() ;}
     
     
    //connexion bd
     
    		try
    	    {  
     
    		  Class.forName("org.gjt.mm.mysql.Driver");	
     
    	    }
    	    catch(ClassNotFoundException e){}
     
    	    try
    	    {
    	    connex = DriverManager.getConnection ("jdbc:mysql://localhost/banque","root","");
     
    	    }
     
    	    catch (SQLException e) {}
     
    	    try
    	    {   
     
    	    	Statement st1=connex.createStatement();
    	    	int i=st1.executeUpdate("insert into `clients` values('"+nom+"','"+prenom+"','"+numero+"')");
    	    	int t =st1.executeUpdate("insert into `compte` values('"+numero+"','"+type+"',"+solde+","+decouvert+")");
     
    	    	st1.close();
    	    	connex.close();
    	    }
    	    catch(SQLException sql){sql.getMessage();}
     
    		return creer;
    	}
        public boolean retrait(String numero,double montant)throws RemoteException{
     
        	File fic2 = new File ("C:"+sep+"rmi"+sep+"rmi2"+sep+"clients"+sep+"clientbin"+numero+".txt");
        	File fic = new File ("C:"+sep+"rmi"+sep+"rmi2"+sep+"clients"+sep+"client"+numero+".txt");
    			trouve=fic2.exists();
     
     
     
     
    				try{
    					FileInputStream fis=new FileInputStream(fic2);
    					ObjectInputStream ois= new ObjectInputStream(fis);
    					c=(Compte)ois.readObject();
     
    					c.debiter(montant);
     
    					//completer le fichier indiv
    					FileWriter fw=new FileWriter(fic,true);
    					BufferedWriter bw= new BufferedWriter(fw);
    					bw.write("Nouvelle op�ration sur le compte");
    					bw.write("\n");
    					bw.write("Retrait de: "+montant+" Francs CFA");
    					bw.write("\n");
    					bw.write("Solde actuel : "+c.getSolde()+" Francs CFA");
    					bw.write("\n");
     
    					bw.close();
    					fw.close();
    					ois.close();
    					fis.close();
     
    					//reecrire dans le fichier binaire
    					FileOutputStream fos=new FileOutputStream(fic2);
    					ObjectOutputStream oos= new ObjectOutputStream(fos);
    					oos.writeObject(c);
     
    				}
     
    					catch(IOException e2){} 
    					catch (ClassNotFoundException e) {
    						// TODO Auto-generated catch block
    						e.printStackTrace();
    					} 
     
    					//con bd
    					try
    				    {  
     
    					  Class.forName("org.gjt.mm.mysql.Driver");	
     
    				    }
    				    catch(ClassNotFoundException e){}
     
    				    try
    				    {
    				    connex = DriverManager.getConnection ("jdbc:mysql://localhost/banque","root","");
     
    				    }
     
    				    catch (SQLException e) {}
     
    				    try
    				    {   
     
    				    	double solde =c.getSolde() ;
     
    				    	Statement st1=connex.createStatement();
     
    				    	int p=st1.executeUpdate("update `compte` set solde="+solde+" where numc='"+numero+"'");
     
     
     
     
    				    	st1.close();
     
    				    	connex.close();
    				    }
    				    catch(SQLException sql){sql.getMessage();}
     
     
    		return trouve;			
     
        }
        public boolean depot(String numero,double montant)throws RemoteException{
        	File fic = new File ("C:"+sep+"rmi"+sep+"rmi2"+sep+"clients"+sep+"client"+numero+".txt");
        	try{fic.createNewFile();
     
        	}catch(IOException io){}
        	File fic2 = new File ("C:"+sep+"rmi"+sep+"rmi2"+sep+"clients"+sep+"clientbin"+numero+".txt");
    			trouve=fic.exists();
     
    				try{
    					FileInputStream fis=new FileInputStream(fic2);
    					ObjectInputStream ois= new ObjectInputStream(fis);
    					c=(Compte)ois.readObject();
     
    					c.crediter(montant);
     
    					//completer le fichier indiv
    					FileWriter fw=new FileWriter(fic,true);
    					BufferedWriter bw= new BufferedWriter(fw);
     
    					bw.write("Nouvelle op�ration sur le compte");
    					bw.write("\n");
    					bw.write("Depot de: "+montant+"Francs CFA");
    					bw.write("\n");
    					bw.write("Solde actuel : "+c.getSolde()+"Francs CFA \n");
    					bw.write("\n");
    					ois.close();
    					fis.close();
    					bw.close();
    					fw.close();
    					//reecrire dans le fichier binaire
    					FileOutputStream fos=new FileOutputStream(fic2);
    					ObjectOutputStream oos= new ObjectOutputStream(fos);
    					oos.writeObject(c);
    					oos.close();
    					fos.close();
     
    				}
     
    					catch(IOException e2){} 
    					catch (ClassNotFoundException e) {
    						// TODO Auto-generated catch block
    						e.printStackTrace();
    					} 
    //					con bd
    					try
    				    {  
     
    					  Class.forName("org.gjt.mm.mysql.Driver");	
     
    				    }
    				    catch(ClassNotFoundException e){}
     
    				    try
    				    {
    				    connex = DriverManager.getConnection ("jdbc:mysql://localhost/banque","root","");
     
    				    }
     
    				    catch (SQLException e) {}
     
    				    try
    				    {   
    				    	double solde=c.getSolde();   	
    				    	Statement st1=connex.createStatement();
     
    				    	int p=st1.executeUpdate("update `compte` set solde="+solde+" where numc='"+numero+"'");
     
     
     
    				    	st1.close();
     
    				    	connex.close();
    				    }
    				    catch(SQLException sql){sql.getMessage();}
     
        return trouve;
        }
        public File getHistorique(String numero)throws RemoteException{
     
        	File fic = new File ("C:"+sep+"rmi"+sep+"rmi2"+sep+"clients"+sep+"client"+numero+".txt");
     
    			return fic;		
     
        }
    	public static void main(String[] args) {
    		// TODO Auto-generated method stub
     
    	}
     
    }
    Lorsque je compile le systeme indique cette erreur dans la classe IClientImpl sur "Client c;" Cannot not be resolved to a type

    Franchement je ne sais pas à quoi est du cette erreur.
    Merci davance pour votre aide

  2. #2
    Modérateur
    Avatar de dinobogan
    Homme Profil pro
    ingénieur
    Inscrit en
    Juin 2007
    Messages
    4 073
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 43
    Localisation : France

    Informations professionnelles :
    Activité : ingénieur
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Juin 2007
    Messages : 4 073
    Points : 7 163
    Points
    7 163
    Par défaut
    Je ne trouve pas la ligne "Client c;" dans ton source. C'est ça ton problème ?

  3. #3
    Futur Membre du Club
    Profil pro
    Inscrit en
    Janvier 2006
    Messages
    27
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2006
    Messages : 27
    Points : 7
    Points
    7
    Par défaut
    "Client c;" Cannot not be resolved to a type
    J'imagine que tu veut dire Compte c;? C'est la seule chose qui s'en rapproche dans ta classe. Tu as une classe dans le même package qui se nomme Compte?

  4. #4
    Membre confirmé Avatar de miloux32
    Profil pro
    Inscrit en
    Juillet 2003
    Messages
    545
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juillet 2003
    Messages : 545
    Points : 565
    Points
    565
    Par défaut
    Citation Envoyé par Exoss Voir le message
    J'imagine que tu veut dire Compte c;? C'est la seule chose qui s'en rapproche dans ta classe. Tu as une classe dans le même package qui se nomme Compte?
    ou alors tu voulais mettre ICompte ? dont tu as fais l'import

  5. #5
    Membre du Club
    Inscrit en
    Mai 2008
    Messages
    55
    Détails du profil
    Informations forums :
    Inscription : Mai 2008
    Messages : 55
    Points : 40
    Points
    40
    Par défaut
    Salut, toutes mes excuses j'ai envoye le mauvais code mais c'est reglé.
    Je viens d'allumer ma machine et ma grande supprise je n'ai plus l'erreur,c'est quand meme bizare.
    voici le code
    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
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
     
    package serveur;
     
    import java.rmi.server.UnicastRemoteObject;
    import java.io.*;
    import java.rmi.*;
    //import java.rmi.server.UnicastRemoteObject;
    import java.sql.*;
     
    //import java.util.*;
    //import java.util.Date;
     
    import javax.swing.JOptionPane;
     
    //import frame.Fenetre;
    import frame.IClient;
     
    public class IClientImpl extends UnicastRemoteObject implements IClient {
     
    	boolean creer,trouve,creer1;
    	Connection connection=null;	
    	Statement st = null;
    	ResultSet rs = null;
    	int numc1,recupmin;
    	String sep = File.separator ;
    	Client c;
     
    	public IClientImpl()throws RemoteException{
    		super();
    	}
     
    	public boolean valider(String prenom,String nom,String adresse,double tel,int jour,int mois,int annee,int heure,int minute,String canal)throws RemoteException
    	{
    		System.setSecurityManager(new RMISecurityManager());
    		c=new Client(prenom,nom,adresse,tel,jour,mois,annee,heure,minute,canal);
     
    		// CONNEXION A LA BASE DE DONNEES  
     
    	     try{
    	    	   Class.forName("org.gjt.mm.mysql.Driver");
    	    	   connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/stage", "root", "passer");
    	    	}
    	    	catch(ClassNotFoundException cnfe)
    	    	{
    	    	   System.out.println("Driver introuvable : ");
    	    	   cnfe.printStackTrace();
    	    	}
    	    	catch(SQLException sqle)
    	    	 {
    	    	   System.out.println("Erreur SQL : ");
    	    	   sqle.printStackTrace();
    	    	 }
     
     
    	    	try
    	         {    
    		      System.out.println("avant ");   	
        	      st=connection.createStatement();					         	        	
        	      rs=st.executeQuery("SELECT `minute` from `rendezvous` where `mois`="+ mois +" and `jour`="+ jour +" and `heure`="+ heure +"");
        	      while (rs.next())  
                   {					        	             
                    recupmin = rs.getInt(1);
                    System.out.println ("numclient: " +recupmin);
                    if(recupmin==minute)
                    {
                     System.out.println("trouve"); 					                           
                     trouve=true;                    
                     break; 
                    } 
                    else
                     {
            	        trouve=false;
            	        System.out.println(" absent"); 
                     }
                    }     
     
                  }
                  catch(SQLException sql){}
     
            if(trouve==true)
            {
                JOptionPane.showMessageDialog (null,"Un Rendez-vous à été déjà pris à cette heure","Message d'alerte",
    				JOptionPane.INFORMATION_MESSAGE, null); 
            }
     
            if(trouve==false)
            {
     
           		   String sep = File.separator ;
    			   File fichierc = new File ("/home/charles"+sep+"clients"+sep+"client"+c.getTel()+".call");
    			   File fichiers = new File ("/home/charles"+sep+"scripts"+sep+"client"+c.getTel()+"call");
     
    			 //Creation du fichier call  
    			   try {
    				    if(!fichierc.exists())
    				     {
    			          creer=fichierc.createNewFile ( );
    			         }
    				    else creer=fichierc.delete();
    			       }
    			   catch ( IOException fic)
    			    {
    				 fic.printStackTrace() ;
    		        }
     
    			   try {
    				    FileWriter	fw = new FileWriter( fichierc ,true);		
    			        BufferedWriter bw = new BufferedWriter(fw); 
     
    			        bw.write("Channel: "+canal);
    			        bw.newLine();
    			        bw.write ("MaxRetries: 0");
    			        bw.newLine();
    			        bw.write ("RetryTime: 30");
    			        bw.newLine();		        
    			        bw.write ("WaitTime: 30");
    			        bw.newLine();
    			        bw.write ("Context: default");
    			        bw.newLine();
    			        bw.write ("Extension: "+tel);
    			        bw.newLine();
     
    			        bw.close ( ) ;
    			        fw.close();
    			       }
    			   catch(IOException f){}
     
      		//Creation du fichier batch	   
    			   try {
    				    if(!fichiers.exists())
    				     {
    			          creer1=fichiers.createNewFile ( );
    			         }
    				    else creer1=fichiers.delete();
    			       }
    			   catch ( IOException b)
    			    {
    				 b.printStackTrace() ;
    		        }
     
    			   try {
    				    FileWriter	fwc = new FileWriter( fichiers ,true);		
    			        BufferedWriter bwc = new BufferedWriter(fwc); 
     
    			        bwc.write("mv /home/charles/clients/client"+c.getTel()+".call /var/spool/asterisk/outgoing/");
    			        bwc.close ( ) ;
    			        fwc.close();
    			       }
    			   catch ( IOException c)
    			    {
    				 c.printStackTrace() ;
    		        }
     
     
    			   try 
    			     {
    				   Runtime.getRuntime().exec("/usr/bin/at -f /home/charles/scripts/client"+c.getTel()+"call " +heure+":"+minute+" "+mois+""+jour+""+annee+"");
    				   //System.out.print("/usr/bin/at -f /home/charles/scripts/client"+id+"call " +heure+":"+minute+" "+mois+jour+annee+"");
    				 } 
    			     catch (IOException d){ }
     
     
     
     
    			    	try
    			        {   
     
    			    		System.out.println("insertion info rendez-vous ");   	
    			        	st=connection.createStatement();
    			        	System.out.println("avant2 ");
    			        	int req1=st.executeUpdate("INSERT INTO `clients` (`nom` , `prenom` , `adresse` , `tel`) VALUES ('"+ nom +"', '"+ prenom +"', '"+ adresse +"', "+ tel +")");
     
    			        	System.out.println("Select");
    			        	rs=st.executeQuery("SELECT `numclient` from `clients` where `tel`="+ tel +" ");
    			        	while (rs.next())  
    			            {
     
    			             numc1 = rs.getInt(1);
    			             System.out.println ("numclient: " +numc1);
    			            }     
    			        	//st=connection.executeQuery("SELECT `id_rv` from rendezvous where numclient="+numc+")");
    			        	int req2=st.executeUpdate("INSERT INTO `rendezvous` (`numclient` ,`annee` , `mois` , `jour` , `heure`, `minute`) VALUES ("+ numc1 +", "+ annee +", "+ mois +", "+ jour +", "+ heure +", "+ minute +")");
    			        	System.out.println("apres");
    			        }
    			        catch(SQLException sql){}
     
            } //Fin if(trouve==false)
     
    		return creer;
    	}
     
     
     
    }
    Merci pour vos reponses; je vais ouvrir un nouvelle discussion car j'ai du mal à lancer mon serveur.

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. erreur dans une jsp :MyBean cannot be resolved to a type
    Par persanbleue dans le forum Servlets/JSP
    Réponses: 0
    Dernier message: 30/06/2009, 16h15
  2. Première JSP et problème "cannot be resolved to a type"
    Par dr.krusty dans le forum Servlets/JSP
    Réponses: 2
    Dernier message: 01/04/2009, 10h20
  3. ActionForm cannot be resolved to a type
    Par fk04 dans le forum Eclipse Java
    Réponses: 1
    Dernier message: 13/04/2007, 10h03
  4. probleme cannot be resolved to a type
    Par jayjay.f dans le forum Eclipse Java
    Réponses: 2
    Dernier message: 23/02/2007, 09h53
  5. [JSP][ERREUR]cannot be resolved to a type
    Par cameleon2002 dans le forum Servlets/JSP
    Réponses: 1
    Dernier message: 05/02/2007, 11h39

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