真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Java創(chuàng)建線程池實現(xiàn)異步音頻播放器

一、編程規(guī)約

創(chuàng)新互聯(lián)公司自成立以來,一直致力于為企業(yè)提供從網(wǎng)站策劃、網(wǎng)站設(shè)計、成都網(wǎng)站設(shè)計、成都網(wǎng)站制作、電子商務(wù)、網(wǎng)站推廣、網(wǎng)站優(yōu)化到為企業(yè)提供個性化軟件開發(fā)等基于互聯(lián)網(wǎng)的全面整合營銷服務(wù)。公司擁有豐富的網(wǎng)站建設(shè)和互聯(lián)網(wǎng)應(yīng)用系統(tǒng)開發(fā)管理經(jīng)驗、成熟的應(yīng)用系統(tǒng)解決方案、優(yōu)秀的網(wǎng)站開發(fā)工程師團(tuán)隊及專業(yè)的網(wǎng)站設(shè)計師團(tuán)隊。

Java創(chuàng)建線程池實現(xiàn)異步音頻播放器Java創(chuàng)建線程池實現(xiàn)異步音頻播放器

 l 阿里的P3C開發(fā)規(guī)范插件會給出警告:

    private staticExecutorServiceexecutor= Executors.newFixedThreadPool(4);

Java創(chuàng)建線程池實現(xiàn)異步音頻播放器

 l Java多線程異步音頻播放器:

實現(xiàn)Java音頻播放器時,支持多線程異步播放,創(chuàng)建線程池時遵守《阿里Java開發(fā)手冊》規(guī)約。

代碼下載:https://github.com/rickding/HelloJava/tree/master/HelloAudio

classPlayerimplementsRunnable {
    private staticScheduledExecutorServiceexecutorService=newScheduledThreadPoolExecutor(
            4,
            newBasicThreadFactory.Builder().namingPattern("audio-player-pool-%d").daemon(true).build()
    );

    public static voidasyncPlay(URL fileUrl) {
        if(fileUrl ==null) {
            return;
        }

        // 播放進(jìn)程
        Player player =newPlayer();
        try{
            player.audioStream= AudioSystem.getAudioInputStream(fileUrl);
        }catch(UnsupportedAudioFileException e) {
            System.err.println(e.getMessage());
        }catch(IOException e) {
            System.err.println(e.getMessage());
        }
        executorService.execute(player);
    }
}


網(wǎng)頁題目:Java創(chuàng)建線程池實現(xiàn)異步音頻播放器
網(wǎng)站鏈接:http://weahome.cn/article/goicih.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部