maven 项目中添加jave-1.0.2.jar
Posted new_boys
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven 项目中添加jave-1.0.2.jar相关的知识,希望对你有一定的参考价值。
想要通过java官网提供的java-1.0.2.jar 来解决音频文件 wav转MP3格式
资源下载地址http://www.sauronsoftware.it/projects/jave/download.php
这个jar是maven仓库里面没有的 , 导入本地仓库步骤
1.将java-1.0.2.jar 复制到C:\\Users\\Administrator路径下, 不同pc路径可能不一样, 总而言之是要在用户路径下
2.mvn install:install-file -Dfile=jave-1.0.2.jar -DgroupId=joinery -DartifactId=jave -Dversion=1.0.2 -Dpackaging=jar
3.在项目pom文件中引入这个依赖
<dependency> <groupId>joinery</groupId> <artifactId>jave</artifactId> <version>1.0.2</version> </dependency>
ps:maven 命令解释:
mvn install:install-file -Dfile="jar包的绝对路径" -Dpackaging="文件打包方式" -DgroupId=groupid名 -DartifactId=artifactId名 -Dversion=jar版本
/**
* @param source 需要转换的文件
* @param destFileName 转换后生成的文件
*/
public static File transform(File source , String destFileName) throws Exception {
File target = new File(destFileName);
AudioAttributes audio = new AudioAttributes();
audio.setCodec("libmp3lame");
audio.setBitRate(new Integer(36000));
audio.setChannels(new Integer(2)); //1 mono 单声道 2 stereo 立体声
audio.setSamplingRate(new Integer(44100));
EncodingAttributes attrs = new EncodingAttributes();
attrs.setFormat("mp3");
attrs.setAudioAttributes(audio);
Encoder encoder = new Encoder();
encoder.encode(source, target, attrs);
return target;
}
原文出自:https://blog.csdn.net/qq_33129625/article/details/78550691
如果不想这么麻烦可以看看这个链接,直接去复制这个做好了的依赖
http://p.codekk.com/detail/Android/dadiyang/jave
以上是关于maven 项目中添加jave-1.0.2.jar的主要内容,如果未能解决你的问题,请参考以下文章
maven项目中添加MySql依赖失败(以及maven的安装到maven项目的使用过程)