|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
java.lang.Object javax.sound.sampled.spi.AudioFileWriter
public abstract class AudioFileWriter
音频文件写入服务的提供者。提供具体实现的类可以从音频流写入一种或多种类型的音频文件。
构造方法摘要 | |
---|---|
AudioFileWriter()
|
方法摘要 | |
---|---|
abstract AudioFileFormat.Type[] |
getAudioFileTypes()
获得此音频文件 writer 为其提供文件写入支持的文件类型。 |
abstract AudioFileFormat.Type[] |
getAudioFileTypes(AudioInputStream stream)
获得此音频文件 writer 可以从指定的音频输入流写入的文件类型。 |
boolean |
isFileTypeSupported(AudioFileFormat.Type fileType)
指示此音频文件 writer 是否提供指定文件类型的文件写入支持。 |
boolean |
isFileTypeSupported(AudioFileFormat.Type fileType,
AudioInputStream stream)
指示是否可以从指示的音频输入流写入指定类型的音频文件。 |
abstract int |
write(AudioInputStream stream,
AudioFileFormat.Type fileType,
File out)
将表示所指示文件格式的音频文件的字节流写入所提供的外部文件。 |
abstract int |
write(AudioInputStream stream,
AudioFileFormat.Type fileType,
OutputStream out)
将表示所指示文件类型的音频文件的字节流写入所提供的输出流。 |
从类 java.lang.Object 继承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
构造方法详细信息 |
---|
public AudioFileWriter()
方法详细信息 |
---|
public abstract AudioFileFormat.Type[] getAudioFileTypes()
public boolean isFileTypeSupported(AudioFileFormat.Type fileType)
fileType
- 为其查询写入功能的文件类型
true
;否则返回 false
public abstract AudioFileFormat.Type[] getAudioFileTypes(AudioInputStream stream)
stream
- 为其查询音频文件类型支持情况的音频输入流
public boolean isFileTypeSupported(AudioFileFormat.Type fileType, AudioInputStream stream)
fileType
- 为其查询写入功能的文件类型stream
- 为其查询文件写入支持情况的流
true
;否则返回 false
public abstract int write(AudioInputStream stream, AudioFileFormat.Type fileType, OutputStream out) throws IOException
AudioSystem.NOT_SPECIFIED
,则试图写入这样一个文件类型将失败,并抛出 IOException。
stream
- 包含将写入输出流的音频数据的音频输入流fileType
- 将写入输出流的文件类型out
- 应该在其中写入文件数据的流
IOException
- 如果发生 I/O 异常
IllegalArgumentException
- 如果系统不支持该文件类型isFileTypeSupported(AudioFileFormat.Type, AudioInputStream)
,
getAudioFileTypes()
public abstract int write(AudioInputStream stream, AudioFileFormat.Type fileType, File out) throws IOException
stream
- 包含将写入文件中的音频数据的音频输入流fileType
- 将写入文件的文件类型out
- 应该将文件数据写入其中的外部文件
IOException
- 如果发生 I/O 异常
IllegalArgumentException
- 如果系统不支持该文件格式isFileTypeSupported(javax.sound.sampled.AudioFileFormat.Type)
,
getAudioFileTypes()
|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。另请参阅文档重新分发政策。