วิธีเปิดไฟล์ด้วยโปรแกรมที่เกี่ยวข้องเริ่มต้น


88

ฉันจะเปิดไฟล์ด้วยโปรแกรมที่เกี่ยวข้องเริ่มต้นใน Java ได้อย่างไร (ตัวอย่างเช่นไฟล์ภาพยนตร์)


ถ้าคุณกำลังใช้JavaFXการเดินทางที่นี่หรือที่นี่
Sedrick

คำตอบ:


139

1
ฉันได้รับข้อยกเว้นนี้เสมอเมื่อลองใช้ไฟล์ภาพยนตร์ แต่ใช้ได้กับไฟล์รูปภาพ (bmp): java.io.IOException: ไม่สามารถเปิดไฟล์: / D: /vidz/2006-04-02.wmv ข้อความแสดงข้อผิดพลาด: พารามิเตอร์ไม่ถูกต้อง
Frederic Morin

คุณสามารถระบุรหัสของคุณในคำถามได้หรือไม่? นอกจากนี้คุณใช้ OS และ Java เวอร์ชันใด
Zach Scrivena

สิ่งที่ฉันไม่เข้าใจคือมันใช้งานได้กับรูปภาพ ... อย่างไรก็ตามฉันใช้ Java 1.6.0.06 และนี่คือรหัส: File file = new File (MoviePlay.getInstance () getBasePath (), movieFile.getPath () ); ลองใช้ {Desktop.getDesktop (). open (file); } catch (ex) {... }
Frederic Morin

5
ฉันรู้ว่ามันนานแล้ว แต่ ... ปัญหาคือเครื่องของฉัน การช่วยเหลือโปรแกรมเริ่มต้นใน Windows XP ของฉันไม่เรียบร้อยและฉันมีปัญหาในโปรแกรมอื่น ฉันลองกับเครื่องอื่นตั้งแต่นั้นมาและวิธีนี้ก็ใช้ได้ดี! รับแล้ว!
Frederic Morin

7
การเพิ่มคำตอบเก่านี้ .edit()นอกจากนี้ยังสามารถใช้หากจุดประสงค์ของการเปิดเพื่อแก้ไข บางระบบมีแอปพลิเคชันเริ่มต้นที่แตกต่างกันสำหรับการดูและแก้ไข .open()จะเปิดโปรแกรมดู
Jason C

0

SwingHacksมีโซลูชันสำหรับ Java เวอร์ชันเก่า

ฉันคิดว่าพวกเขาใช้วัตถุ Runtime เพื่อเรียกใช้คำสั่ง 'start' บน windows และมีคำสั่งที่คล้ายกันบนเครื่อง mac


-8

ได้แล้ว:

File myFile = new File("your any type of file url");
FileOpen.openFile(mContext, myFile);

สร้างคลาสอื่นภายในแพ็คเกจ:

// code to open default application present in the handset


public class FileOpen {

    public static void openFile(Context context, File url) throws IOException {
        // Create URI
        File file=url;
        Uri uri = Uri.fromFile(file);

        Intent intent = new Intent(Intent.ACTION_VIEW);
        // Check what kind of file you are trying to open, by comparing the url with extensions.
        // When the if condition is matched, plugin sets the correct intent (mime) type, 
        // so Android knew what application to use to open the file
        if (url.toString().contains(".doc") || url.toString().contains(".docx")) {
            // Word document
            intent.setDataAndType(uri, "application/msword");
        } else if(url.toString().contains(".pdf")) {
            // PDF file
            intent.setDataAndType(uri, "application/pdf");
        } else if(url.toString().contains(".ppt") || url.toString().contains(".pptx")) {
            // Powerpoint file
            intent.setDataAndType(uri, "application/vnd.ms-powerpoint");
        } else if(url.toString().contains(".xls") || url.toString().contains(".xlsx")) {
            // Excel file
            intent.setDataAndType(uri, "application/vnd.ms-excel");
        } else if(url.toString().contains(".zip") || url.toString().contains(".rar")) {
            // WAV audio file
            intent.setDataAndType(uri, "application/x-wav");
        } else if(url.toString().contains(".rtf")) {
            // RTF file
            intent.setDataAndType(uri, "application/rtf");
        } else if(url.toString().contains(".wav") || url.toString().contains(".mp3")) {
            // WAV audio file
            intent.setDataAndType(uri, "audio/x-wav");
        } else if(url.toString().contains(".gif")) {
            // GIF file
            intent.setDataAndType(uri, "image/gif");
        } else if(url.toString().contains(".jpg") || url.toString().contains(".jpeg") || url.toString().contains(".png")) {
            // JPG file
            intent.setDataAndType(uri, "image/jpeg");
        } else if(url.toString().contains(".txt")) {
            // Text file
            intent.setDataAndType(uri, "text/plain");
        } else if(url.toString().contains(".3gp") || url.toString().contains(".mpg") || url.toString().contains(".mpeg") || url.toString().contains(".mpe") || url.toString().contains(".mp4") || url.toString().contains(".avi")) {
            // Video files
            intent.setDataAndType(uri, "video/*");
        } else {
            //if you want you can also define the intent type for any other file

            //additionally use else clause below, to manage other unknown extensions
            //in this case, Android will show all applications installed on the device
            //so you can choose which application to use
            intent.setDataAndType(uri, "*/*");
        }

        intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); 
        context.startActivity(intent);
    }
}

หรือคุณสามารถเปลี่ยนif condtion เช่นนี้
Vaibhav Joshi

if (url.getPath (). endedWith (". jpg") || url.getPath (). endedWith (". jpeg") || url.getPath (). endWith (". png")) { (uri, "ภาพ / *"); }
Vaibhav Joshi

1
ใช้งานได้บน Android เท่านั้น ไม่ใช่วิธีแก้ปัญหาสำหรับทุกแพลตฟอร์ม
andred

1
การเป็นนักพัฒนาแอนดรอยด์ฉันคิดว่ามันจะเป็นประโยชน์สำหรับนักพัฒนาแอนดรอยด์อย่างน้อย
Vaibhav Joshi
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.