-2

初めて実行可能なjarを作成しようとして、Mavenを使用しています。

Javaはそれ自体で正常に動作しますが、jarを実行しようとすると、src \ main \ resources\sound.wavに対してFileNotFoundExceptionが発生します。

問題は明らかにpom.xmlファイルとリソース宣言にあると思いますが、Mavenとjarの経験がなく、アイデアがないということは、いくらいじっても修正できないように見えることを意味します。

私のpom.xmlファイルは次のようになります。

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>groupID</groupId>
<artifactId>Main</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>

<build>
    <finalName>MailCheck</finalName>

    <resources>
        <resource>
            <directory>src/main/resources</directory>
            <includes>
                <include>sound.wav</include>
            </includes>
        </resource>
    </resources>

    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-assembly-plugin</artifactId>
            <version>2.2.1</version>
            <executions>
                <execution>
                    <id>package-jar-with-dependencies</id>
                    <phase>package</phase>
                    <goals>
                        <goal>single</goal>
                    </goals>
                    <configuration>
                        <appendAssemblyId>false</appendAssemblyId>
                        <descriptorRefs>
                            <descriptorRef>jar-with-dependencies</descriptorRef>
                        </descriptorRefs>
                        <archive>
                            <manifest>
                                <mainClass>Main</mainClass>
                            </manifest>
                        </archive>
                    </configuration>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>

<dependencies>
    <dependency>
        <groupId>javax.mail</groupId>
        <artifactId>mail</artifactId>
        <version>1.4.7</version>
    </dependency>
</dependencies>

私のJavaファイルは次のようになります。

import sun.audio.AudioPlayer;
import sun.audio.AudioStream;

import javax.mail.*;
import javax.mail.search.FlagTerm;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;

public class Main {
    public static void main(String[] args)
    {
        String password = "mypassword";
        String emailAddress = "myemail";

        String soundFile = "src\\main\\resources\\sound.wav";
        AudioStream as = null;

        Properties props = System.getProperties();
        props.setProperty("mail.store.protocol", "imaps");

        try
        {
            InputStream in = new FileInputStream(soundFile);
            as = new AudioStream(in);

        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }

        try
        {
            Session session = Session.getInstance(props, null);
            Store store = session.getStore("imaps");
            store.connect("imap.gmail.com", emailAddress, password);

            Folder inbox = store.getFolder("Inbox");
            inbox.open(Folder.READ_ONLY);

            FlagTerm ft = new FlagTerm(new Flags(Flags.Flag.SEEN), false);
            Message[] messages = inbox.search(ft);

            int unreadMail = 0;

            for (Message message : messages)
            {
                unreadMail++;

                if (unreadMail > 0)
                {
                    AudioPlayer.player.start(as);
                    break;
                }
            }

        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}
4

1 に答える 1

1

パッケージ化後、このファイルは生成されたJARに存在する必要があります。こちらをご確認ください。InputStreamまた、ファイルシステムの通常のファイルのようにJARのファイルを取得することはできません。InputStreamfromリソースを取得してみてください。

InputStream in = Main.class.getClassLoader()
                                .getResourceAsStream("src/main/resources/sound.wav");
于 2013-03-16T17:11:02.580 に答える