Capturing speaker output in Java

前端 未结 3 1245
闹比i
闹比i 2020-11-29 12:16

Using Java is it possible to capture the speaker output? This output is not being generated by my program but rather by other running applications. Can this be done with Jav

3条回答
  •  情话喂你
    2020-11-29 13:00

    Java is not the best tool when dealing with the OS. If you need/want to use it for this task, probably you will end using Java Native Interface (JNI), linking to libraries compiled in other languages (probably c/c++).

提交回复
热议问题