bu java uygulaması için benim php kodu denetleyicisi kodudur ama benim Java GUI programında yeni bir dosya taramak istiyorum ...Yerel php dosyasını java gui programından (web'den değil) nasıl okunur?
public class test {
public static void main(String[] args) throws MalformedURLException, IOException {
URL u = new URL("http://www.example.com/my/php/doc.php");
URLConnection c = u.openConnection();
InputStream r = c.getInputStream();
BufferedReader reader = new BufferedReader(new InputStreamReader(r));
for (String line;
(
line = reader.
`enter code here`
readLine()) != null;
)
System.out.println(line);
Bu kod Web'den dosyasını açar ama dosyayı açmak istiyor masaüstü
ve sorunuz nedir ??? –
İlk önce sorunuzu doğru biçimlendirmek/formüle etmek isteyebilirsiniz. Mevcut versiyonda hiç kimse bu kodu okumak istemezdi. –
Bu kod web php dosyasını açın ama dosyamı masaüstünden açmak istiyorum –