A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

李彭

初级黑马

  • 黑马币:61

  • 帖子:20

  • 精华:0

有3段音乐.mp3的格式拼接在一起,存放在当前项目下(没有音乐可以找音乐,名字自己改成自己想要的)

5 个回复

倒序浏览
去学了一下IO,你开三个Input 一个Output,三个都分别放到这个Output里就可以了
回复 使用道具 举报
empty3717 来自手机 中级黑马 2016-7-16 12:15:59
藤椅
二楼正解。
回复 使用道具 举报
这很简单吧
回复 使用道具 举报
我在想這样拼接出来还能不能播放呢?
我就实验了一下结果是:

可以的

  1. import java.io.*;

  2. /**
  3. * Created by Void Young on 5:30 PM 7/16/2016 .
  4. * IDEA-Test .
  5. */
  6. public class TestMusic {
  7.     public static void main (String[] args) throws IOException{
  8.         try(
  9.                 BufferedInputStream bis1 = new BufferedInputStream (new FileInputStream ("z:/1.mp3"));
  10.                 BufferedInputStream bis2 = new BufferedInputStream (new FileInputStream ("z:/2.mp3"));
  11.                 BufferedOutputStream bos = new BufferedOutputStream (new FileOutputStream ("z:/3.mp3"));
  12.                 ) {
  13.                 int b;
  14.             while (( b = bis1.read () ) != - 1) {
  15.                 bos.write (b);
  16.             }
  17.             while (( b = bis2.read () ) != - 1) {
  18.                 bos.write (b);
  19.             }
  20.         }
  21.     }
  22. }
复制代码
回复 使用道具 举报
学习了~~
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马