0

私はマウスを使ってPC上で実行するアプリケーションを持っています。Javaから特定のファイル名でedrawingsviewerを起動し、ユーザーがフルスクリーンアプリに戻ったときに、閉じていない場合は閉じたいと思います。これは私がこれまでのところ簡単なデモのために持っているものですが、特定のファイルでSolidworksを起動するために引数に何を入れるべきか理解できません。

package com.protocase.hmiclient.edrawings;

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.File;
import java.io.FilenameFilter;
import java.io.IOException;
import javax.swing.JButton;
import javax.swing.JFrame;

/**
 * @author DavidH
 */
public class EDrawingHelper {

    public static File[] getEDrawingsForJob(final String jobNumber) {
        File f = new File("\\\\itsugar\\www\\HMI\\POD EDRAWINGS");
        File[] matchingFiles = f.listFiles(new FilenameFilter() {
            public boolean accept(File dir, String name) {
                return name.startsWith(jobNumber) && (name.endsWith("EASM") || name.endsWith("EDRW"));
            }
        });
        return matchingFiles;
    }
    public static void test(String[] args) {
        File[] files = getEDrawingsForJob("G080111004-13162-1");
        for (File file : files){
            System.out.println(file.getName());
        }
    }
    public static void openEDrawingForFileName(String fileName){
        try {
            final Process process = Runtime.getRuntime().exec("C:\\Program Files\\SolidWorks Corp\\SolidWorks eDrawings (2)\\EModelViewer.exe  \\\\itsugar\\www\\HMI\\POD EDRAWINGS\\"+fileName);
            JFrame frame = new JFrame();
            JButton killButton = new JButton("KILL");
            killButton.addActionListener(new ActionListener() {
                @Override
                public void actionPerformed(ActionEvent e) {
                    process.destroy();
                    System.exit(0);
                }
            });
            frame.getContentPane().add(killButton);
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.pack();
            frame.setVisible(true);
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
    public static void main(String[] args) {
        openEDrawingForFileName("G080111004-13162-1 ASSEMBLY.EASM");
    }
}

これはSolidworksの問題ではないと思います。これは、私が間違って渡しているか、フォーマットが間違っているか、何かであると思います。

4

1 に答える 1

0

FileProtocolHandlerを介して実行すると、正常に開くように見えます。

final Process process = Runtime.getRuntime().exec("rundll32 url.dll,FileProtocolHandler \\\\itsugar\\www\\HMI\\POD EDRAWINGS\\"+fileName);
于 2011-12-21T14:58:11.380 に答える