⑴ 求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页面中通过标记进行访问文件啊例如:文件查看