一、編程規(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)隊。
l 阿里的P3C開發(fā)規(guī)范插件會給出警告:
private staticExecutorServiceexecutor= Executors.newFixedThreadPool(4);
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);
}
}