私はデータベース処理に不慣れです。データベースが必要なJavaでカラオケプレーヤーを作成しています。ハードディスクから直接素材(サウンドおよびテキストファイル)を取得する必要はありませんが、データベース(SQL Server、Oracleなど)にそれらを保存して、参照/ポイントできるオブジェクトを作成できるようにします。彼ら。出来ますか??
public class SoundPlayer extends JComponent
{
String windowName;
Clip clip;Clip clip2;
public static void main(String[] args) throws UnsupportedAudioFileException,
IOException, LineUnavailableException, InterruptedException
{
JFrame f=new JFrame("hh");
f.getContentPane();
f.pack();
f.setVisible(true);
}
private String String;
public SoundPlayer(File file) throws UnsupportedAudioFileException, IOException, LineUnavailableException, InterruptedException {
AudioInputStream ain=AudioSystem.getAudioInputStream(file);
try
{
DataLine.Info info=new DataLine.Info(Clip.class,ain.getFormat());
AudioFormat inFormat = ain.getFormat();
clip=(Clip) AudioSystem.getLine(info);
//rest code
オブジェクトにアクセスできるように、オブジェクトはプログラムで使用できる必要があります。