- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我是一名学习 Java 的学生,正在为我的简历开发一个独立项目。我决定做一个 Java 计算器,因为我知道组成它的大部分组件。我不知道该怎么做的一件事是在按下按钮时添加声音。我对 Audiostream 输入的内容有一个模糊的认识。但是我的计算器上的每个按钮都需要独特的声音。现在我的计算器还没有完全完成(听众还没有工作。)我只是想知道将我的 .wav 文件合并到按钮按下中的最佳方法是什么。提前致谢。
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class Calculator {
//instance variables
JFrame frame;
JPanel mainPanel, northPanel, southPanel;
JTextField numberLabel;
JButton backspace, multiply, divide, add, subtract, equal; //four function buttons
JButton one, two, three, four, five, six, seven, eight, nine, zero; //number buttons
JButton posOrNeg, decimal, leftParenthese, rightParenthese;
//constructor
public Calculator()
{
//create it
frame = new JFrame();
mainPanel = new JPanel(); //contains both panels
mainPanel.setForeground(Color.BLACK);
mainPanel.setBackground(Color.DARK_GRAY);
northPanel = new JPanel(new BorderLayout()); //contains the number label in border layout
southPanel = new JPanel(new GridLayout(5, 4)); //contains the buttons in border layout
numberLabel = new JTextField(37); //*************************
backspace = new JButton();
backspace.setForeground(Color.WHITE);
backspace.setBackground(Color.GRAY);
multiply = new JButton();
multiply.setForeground(Color.WHITE);
multiply.setBackground(Color.MAGENTA);
divide = new JButton();
divide.setForeground(Color.WHITE);
divide.setBackground(Color.PINK);
add = new JButton();
add.setForeground(Color.WHITE);
add.setBackground(Color.BLUE);
subtract = new JButton();
subtract.setForeground(Color.WHITE);
subtract.setBackground(Color.RED);
equal = new JButton();
equal.setForeground(Color.WHITE);
equal.setBackground(Color.ORANGE);
zero = new JButton();
zero.setForeground(Color.DARK_GRAY);
zero.setBackground(Color.GREEN);
one = new JButton();
one.setForeground(Color.DARK_GRAY);
one.setBackground(Color.GREEN);
two = new JButton();
two.setForeground(Color.DARK_GRAY);
two.setBackground(Color.GREEN);
three = new JButton();
three.setForeground(Color.DARK_GRAY);
three.setBackground(Color.GREEN);
four = new JButton();
four.setForeground(Color.DARK_GRAY);
four.setBackground(Color.GREEN);
five = new JButton();
five.setForeground(Color.DARK_GRAY);
five.setBackground(Color.GREEN);
six = new JButton();
six.setForeground(Color.DARK_GRAY);
six.setBackground(Color.GREEN);
seven = new JButton();
seven.setForeground(Color.DARK_GRAY);
seven.setBackground(Color.GREEN);
eight = new JButton();
eight.setForeground(Color.DARK_GRAY);
eight.setBackground(Color.GREEN);
nine = new JButton();
nine.setForeground(Color.DARK_GRAY);
nine.setBackground(Color.GREEN);
posOrNeg = new JButton();
posOrNeg.setForeground(Color.WHITE);
posOrNeg.setBackground(Color.LIGHT_GRAY);
decimal = new JButton();
decimal.setForeground(Color.WHITE);
decimal.setBackground(Color.CYAN);
leftParenthese = new JButton();
rightParenthese = new JButton();
//configure it
frame.setTitle("My Calculator");
frame.setSize(450, 225);
frame.setLocation(200, 200);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
//buttons
backspace.setText("Back Space");
leftParenthese.setText("(");
rightParenthese.setText(")");
multiply.setText("x");
divide.setText("/");
add.setText("+");
subtract.setText("-");
equal.setText("=");
zero.setText("0");
one.setText("1");
two.setText("2");
three.setText("3");
four.setText("4");
five.setText("5");
six.setText("6");
seven.setText("7");
eight.setText("8");
nine.setText("9");
posOrNeg.setText("+/-");
decimal.setText(".");
//add it
northPanel.add(numberLabel, BorderLayout.NORTH);
southPanel.add(backspace);
southPanel.add(leftParenthese);
southPanel.add(rightParenthese);
southPanel.add(multiply);
southPanel.add(seven);
southPanel.add(eight);
southPanel.add(nine);
southPanel.add(divide);
southPanel.add(four);
southPanel.add(five);
southPanel.add(six);
southPanel.add(add);
southPanel.add(one);
southPanel.add(two);
southPanel.add(three);
southPanel.add(subtract);
southPanel.add(zero);
southPanel.add(decimal);
southPanel.add(posOrNeg);
southPanel.add(equal);
mainPanel.add(northPanel, BorderLayout.NORTH);
mainPanel.add(southPanel, BorderLayout.SOUTH);
frame.add(mainPanel);
//add listener
one.addActionListener(new ButtonListener());
two.addActionListener(new ButtonListener());
three.addActionListener(new ButtonListener());
four.addActionListener(new ButtonListener());
five.addActionListener(new ButtonListener());
six.addActionListener(new ButtonListener());
seven.addActionListener(new ButtonListener());
eight.addActionListener(new ButtonListener());
nine.addActionListener(new ButtonListener());
zero.addActionListener(new ButtonListener());
multiply.addActionListener(new ButtonListener());
divide.addActionListener(new ButtonListener());
add.addActionListener(new ButtonListener());
subtract.addActionListener(new ButtonListener());
equal.addActionListener(new ButtonListener());
posOrNeg.addActionListener(new ButtonListener());
decimal.addActionListener(new ButtonListener());
backspace.addActionListener(new ButtonListener());
leftParenthese.addActionListener(new ButtonListener());
rightParenthese.addActionListener(new ButtonListener());
}
//define action listener
class ButtonListener implements ActionListener
{
public void actionPerformed(ActionEvent e)
{
if(e.getSource() == one)
{
}
if(e.getSource() == two)
{
}
if(e.getSource() == three)
{
}
if(e.getSource() == four)
{
}
if(e.getSource() == five)
{
}
if(e.getSource() == six)
{
}
if(e.getSource() == seven)
{
}
if(e.getSource() == eight)
{
}
if(e.getSource() == nine)
{
}
if(e.getSource() == zero)
{
}
if(e.getSource() == multiply)
{
}
if(e.getSource() == divide)
{
}
if(e.getSource() == add)
{
}
if(e.getSource() == subtract)
{
}
if(e.getSource() == equal)
{
}
if(e.getSource() == posOrNeg)
{
}
if(e.getSource() == decimal)
{
}
if(e.getSource() == backspace)
{
}
if(e.getSource() == leftParenthese)
{
}
if(e.getSource() == rightParenthese)
{
}
}
}
}
最佳答案
String soundName = "yourSound.wav";
AudioInputStream audioInputStream = AudioSystem.getAudioInputStream(new File(soundName).getAbsoluteFile());
Clip clip = AudioSystem.getClip();
clip.open(audioInputStream);
clip.start();
这应该可以帮助您实现您的目标。
是的,您将需要这些导入:-
import java.io.File;
import javax.sound.sampled.AudioInputStream;
import javax.sound.sampled.AudioSystem;
import javax.sound.sampled.Clip;
关于java - 在 Java 计算器的按钮按下时获得声音的最佳方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15526255/
我想了解 Ruby 方法 methods() 是如何工作的。 我尝试使用“ruby 方法”在 Google 上搜索,但这不是我需要的。 我也看过 ruby-doc.org,但我没有找到这种方法。
Test 方法 对指定的字符串执行一个正则表达式搜索,并返回一个 Boolean 值指示是否找到匹配的模式。 object.Test(string) 参数 object 必选项。总是一个
Replace 方法 替换在正则表达式查找中找到的文本。 object.Replace(string1, string2) 参数 object 必选项。总是一个 RegExp 对象的名称。
Raise 方法 生成运行时错误 object.Raise(number, source, description, helpfile, helpcontext) 参数 object 应为
Execute 方法 对指定的字符串执行正则表达式搜索。 object.Execute(string) 参数 object 必选项。总是一个 RegExp 对象的名称。 string
Clear 方法 清除 Err 对象的所有属性设置。 object.Clear object 应为 Err 对象的名称。 说明 在错误处理后,使用 Clear 显式地清除 Err 对象。此
CopyFile 方法 将一个或多个文件从某位置复制到另一位置。 object.CopyFile source, destination[, overwrite] 参数 object 必选
Copy 方法 将指定的文件或文件夹从某位置复制到另一位置。 object.Copy destination[, overwrite] 参数 object 必选项。应为 File 或 F
Close 方法 关闭打开的 TextStream 文件。 object.Close object 应为 TextStream 对象的名称。 说明 下面例子举例说明如何使用 Close 方
BuildPath 方法 向现有路径后添加名称。 object.BuildPath(path, name) 参数 object 必选项。应为 FileSystemObject 对象的名称
GetFolder 方法 返回与指定的路径中某文件夹相应的 Folder 对象。 object.GetFolder(folderspec) 参数 object 必选项。应为 FileSy
GetFileName 方法 返回指定路径(不是指定驱动器路径部分)的最后一个文件或文件夹。 object.GetFileName(pathspec) 参数 object 必选项。应为
GetFile 方法 返回与指定路径中某文件相应的 File 对象。 object.GetFile(filespec) 参数 object 必选项。应为 FileSystemObject
GetExtensionName 方法 返回字符串,该字符串包含路径最后一个组成部分的扩展名。 object.GetExtensionName(path) 参数 object 必选项。应
GetDriveName 方法 返回包含指定路径中驱动器名的字符串。 object.GetDriveName(path) 参数 object 必选项。应为 FileSystemObjec
GetDrive 方法 返回与指定的路径中驱动器相对应的 Drive 对象。 object.GetDrive drivespec 参数 object 必选项。应为 FileSystemO
GetBaseName 方法 返回字符串,其中包含文件的基本名 (不带扩展名), 或者提供的路径说明中的文件夹。 object.GetBaseName(path) 参数 object 必
GetAbsolutePathName 方法 从提供的指定路径中返回完整且含义明确的路径。 object.GetAbsolutePathName(pathspec) 参数 object
FolderExists 方法 如果指定的文件夹存在,则返回 True;否则返回 False。 object.FolderExists(folderspec) 参数 object 必选项
FileExists 方法 如果指定的文件存在返回 True;否则返回 False。 object.FileExists(filespec) 参数 object 必选项。应为 FileS
我是一名优秀的程序员,十分优秀!