国产gaysexchina男同gay,japanrcep老熟妇乱子伦视频,吃奶呻吟打开双腿做受动态图,成人色网站,国产av一区二区三区最新精品

App下載
首頁javaimageJava Graphics - 如何在Windows上的默認圖像查看器中打開圖像

Java Graphics - 如何在Windows上的默認圖像查看器中打開圖像

我們想知道如何在Windows上的默認圖像查看器中打開圖像。
public class Main {
  public static void main(String[] args) throws Exception {
    String fileName = "c:\\temp\\test.bmp";
    String[] commands = { "cmd.exe", "/c", "start", "\"DummyTitle\"",
        "\"" + fileName + "\"" };
    Process p = Runtime.getRuntime().exec(commands);
    p.waitFor();
    System.out.println("Done.");
  }
}