⑴ 求java編寫的音樂下載程序
200分,在線音樂下載,登陸界面是163mail的登錄界面
如果是[email protected]聯系
⑵ 給個java通用版的免費(只用流量)批量下載音樂的軟體
一倪給個郵箱→我給你發過去,但是沒有,所以→二倪自己去下載→搜狐網,手機搜狐網→有→java通用區→下載→多米→或者其他…總之很多
⑶ 如何用Java實現在線聽音樂
/**下載jar包:
http://www.javazoom.net/javalayer/sources/jlayer1.0.1.zip
*/
import java.io.BufferedInputStream;
import java.net.HttpURLConnection;
import java.net.URL;
import javazoom.jl.player.Player;
public class mp3Online {
private String filename;
private Player player;
private HttpURLConnection connection;// 存儲連接
private int downed = 0;// 文加已下載大小,初始值為0
private URL fileurl;// 記錄要下載文件的地址
// constructor that takes the name of an MP3 file
public MP3Online(String filename) {
this.filename = filename;
}
public void close() {
if (player != null)
player.close();
}
// play the MP3 file to the sound card
public void play() {
try {
fileurl = new URL(filename);
connection = (HttpURLConnection) fileurl.openConnection();
connection.setRequestProperty("Range", "byte=" + this.downed + "-");
BufferedInputStream bis = new BufferedInputStream(connection
.getInputStream());
player = new Player(bis);
} catch (Exception e) {
System.out.println("Problem playing file " + filename);
System.out.println(e);
}
// run in new thread to play in background
new Thread() {
public void run() {
try {
player.play();
} catch (Exception e) {
System.out.println(e);
}
}
}.start();
}
// test client
public static void main(String[] args) {
// String filename = "F:\\Workspaces\\glxt2\\test\\simple\\fallin-alicia keys.mp3";
String filename = "http://www.venusad.cn/venus/ch/mp3/01.mp3";
MP3Online mp3 = new MP3Online(filename);
mp3.play();
// when the computation is done, stop playing it
mp3.close();
// play from the beginning
mp3 = new MP3Online(filename);
mp3.play();
}
}
⑷ java 如何通過url 下載歌曲但是圖片我知道怎麼下,歌曲卻不行
importjava.io.ByteArrayOutputStream;
importjava.io.File;
importjava.io.FileOutputStream;
importjava.io.InputStream;
importjava.net.HttpURLConnection;
importjava.net.URL;
publicclassKaiba
{
publicstaticvoidmain(String[]args)
{
{
Stringp="ht和諧tp://yinyueshiting..com/data2/music/43032216/73464621442466061128.mp3?xcode=";
URLurl=newURL(p);
HttpURLConnectionhuc=(HttpURLConnection)url.openConnection();
huc.setRequestMethod("GET");
huc.setConnectTimeout(5*1000);
InputStreamis=huc.getInputStream();
ByteArrayOutputStreambaos=newByteArrayOutputStream();
byte[]buffer=newbyte[1024*1024];
intlen=-1;
while((len=is.read(buffer))!=-1)
{
baos.write(buffer,0,len);
}
baos.flush();
baos.close();
is.close();
huc.disconnect();
byte[]data=baos.toByteArray();
Stringname=p.replaceAll(".*\/(.*\.[^\?]+).*","$1");
FileOutputStreamfos=newFileOutputStream(newFile(name));
fos.write(data);
fos.flush();
fos.close();
}
catch(Exceptione)
{
e.printStackTrace();
}
}
}
⑸ 誰有支持全觸屏的JAVA音樂播放器的下載地址
老版本的anyview應該可以,既能看書又能聽歌,還支持觸摸
⑹ 如何在電腦上下載java音樂播放器
必須要先在計算機中創建JAVA環境,然後才可以的。構建JAVA環境的安裝程序網上可以下載。
⑺ JAVA的手機有什麼好點的音樂播放器可以下載
手機是什麼型號的了,有的1版,2版都不支持的。我原來用的是諾基亞S40V3版的,天天動聽是蠻好的!
⑻ 有適合java機型的音樂播放軟體嗎希望播放音質好的,最好能在線聽歌和下載歌曲的
很多啊,酷我音樂盒就很不錯。
⑼ 哪裡可以下載到jaVa通用版的觸屏音樂播放器
2011-10-28
11:34:00
建議用手6機
酷狗
,或者天n天u動聽,還有很多的,告訴你個s網站自己z下h載啊,網路收索
手0機
樂園
,進去後有很多。。希望能幫到你
⑽ Java 利用url下載MP3保存到本地
可以在JSP頁面中通過標記進行訪問文件啊例如:文件查看