Php through java

manou2324 - 22 avril 2013 à 22:53
cs_Julien39 Messages postés 6414 Date d'inscription mardi 8 mars 2005 Statut Modérateur Dernière intervention 29 juillet 2020 - 23 avril 2013 à 08:37
Hi,
i want to execute a php program through a java program.
I have this java code :
public static void main (String [] args) throws Exception {	
     String url="http://localhost/projet.php";
try {
    URL myURL = new URL(url);
    URLConnection myURLConnection = myURL.openConnection();
   myURLConnection.connect();
....

i put projet.php under "C:wamp\www"
but this code doesn't execute my php program
(My projet.php run correctly if i launch it through wamp)

please what is the problem?

1 réponse

cs_Julien39 Messages postés 6414 Date d'inscription mardi 8 mars 2005 Statut Modérateur Dernière intervention 29 juillet 2020 372
23 avril 2013 à 08:37
Hi,

the JVM can't read a php program, you have to find another solution because that's impossible to do that with java.
0
Rejoignez-nous