(Processing / Java) 将单数文件函数转换为接受数组的函数
(Processing / Java) Converting a singular file function into a function that takes an array
我正在尝试创建一个程序来上传多个文件并将它们的名称和 BPM 标签存储到一个 ArrayList
中以供文件之间的比较。我找到了两个函数来帮助我,但我无法将它们组合起来以获得我需要的函数。
第一个函数采用单个 mp3 文件并将其数据输出到控制台(使用 mp3agic 库):
File file = new File(dataPath("") + "/Song.mp3");
Mp3File mp3file = new Mp3File(file.getPath());
if (mp3file.hasId3v2Tag()) {
ID3v2 id3v2Tag = mp3file.getId3v2Tag();
println("Track: " + id3v2Tag.getTrack());
println("Artist: " + id3v2Tag.getArtist());
println("BPM: " + id3v2Tag.getBPM());
println("Album artist: " + id3v2Tag.getAlbumArtist());
}
第二个函数采用数据路径并输出包含文件夹中文件的名称和信息的目录
void setup() {
String path = "Desktop/mp3folder";
println("Listing all filenames in a directory: ");
String[] filenames = listFileNames(path);
printArray(filenames);
println("\nListing info about all files in a directory: ");
File[] files = listFiles(path);
for (int i = 0; i < files.length; i++) {
File f = files[i];
println("Name: " + f.getName());
println("Is directory: " + f.isDirectory())
println("-----------------------");
}
}
// This function returns all the files in a directory as an array of Strings
String[] listFileNames(String dir) {
File file = new File(dir);
if (file.isDirectory()) {
String names[] = file.list();
return names;
} else {
// If it's not a directory
return null;
}
}
// This function returns all the files in a directory as an array of File objects
// This is useful if you want more info about the file
File[] listFiles(String dir) {
File file = new File(dir);
if (file.isDirectory()) {
File[] files = file.listFiles();
return files;
} else {
// If it's not a directory
return null;
}
}
我尝试创建的函数结合了这两者。我需要第一个函数中的艺术家、曲目和 BPM 来处理目录中的文件数组列表。
任何指导将不胜感激。任何关于其他方式的建议也将不胜感激。
解决此问题的一种方法是使用 classes 封装您要跟踪的数据。
例如,这是一个简化的 class,其中包含有关艺术家、曲目和 bpm 的信息:
public class TrackInfo{
private String artist;
private String track;
int bpm;
}
我也会退后一步,break your problem down into smaller steps,然后一次一个地处理这些碎片。你能创建一个接受 File
参数并打印出 File
的 MP3 数据的函数吗?
void printMp3Info(File file){
// print out data about file
}
在继续之前让它完美运行。在尝试将它与多个 File
实例的 ArrayList
一起使用之前,请尝试使用硬编码 File
实例调用它。
然后,如果您遇到困难,您可以 post MCVE 以及一个具体的技术问题。祝你好运。
我正在尝试创建一个程序来上传多个文件并将它们的名称和 BPM 标签存储到一个 ArrayList
中以供文件之间的比较。我找到了两个函数来帮助我,但我无法将它们组合起来以获得我需要的函数。
第一个函数采用单个 mp3 文件并将其数据输出到控制台(使用 mp3agic 库):
File file = new File(dataPath("") + "/Song.mp3");
Mp3File mp3file = new Mp3File(file.getPath());
if (mp3file.hasId3v2Tag()) {
ID3v2 id3v2Tag = mp3file.getId3v2Tag();
println("Track: " + id3v2Tag.getTrack());
println("Artist: " + id3v2Tag.getArtist());
println("BPM: " + id3v2Tag.getBPM());
println("Album artist: " + id3v2Tag.getAlbumArtist());
}
第二个函数采用数据路径并输出包含文件夹中文件的名称和信息的目录
void setup() {
String path = "Desktop/mp3folder";
println("Listing all filenames in a directory: ");
String[] filenames = listFileNames(path);
printArray(filenames);
println("\nListing info about all files in a directory: ");
File[] files = listFiles(path);
for (int i = 0; i < files.length; i++) {
File f = files[i];
println("Name: " + f.getName());
println("Is directory: " + f.isDirectory())
println("-----------------------");
}
}
// This function returns all the files in a directory as an array of Strings
String[] listFileNames(String dir) {
File file = new File(dir);
if (file.isDirectory()) {
String names[] = file.list();
return names;
} else {
// If it's not a directory
return null;
}
}
// This function returns all the files in a directory as an array of File objects
// This is useful if you want more info about the file
File[] listFiles(String dir) {
File file = new File(dir);
if (file.isDirectory()) {
File[] files = file.listFiles();
return files;
} else {
// If it's not a directory
return null;
}
}
我尝试创建的函数结合了这两者。我需要第一个函数中的艺术家、曲目和 BPM 来处理目录中的文件数组列表。
任何指导将不胜感激。任何关于其他方式的建议也将不胜感激。
解决此问题的一种方法是使用 classes 封装您要跟踪的数据。
例如,这是一个简化的 class,其中包含有关艺术家、曲目和 bpm 的信息:
public class TrackInfo{
private String artist;
private String track;
int bpm;
}
我也会退后一步,break your problem down into smaller steps,然后一次一个地处理这些碎片。你能创建一个接受 File
参数并打印出 File
的 MP3 数据的函数吗?
void printMp3Info(File file){
// print out data about file
}
在继续之前让它完美运行。在尝试将它与多个 File
实例的 ArrayList
一起使用之前,请尝试使用硬编码 File
实例调用它。
然后,如果您遇到困难,您可以 post MCVE 以及一个具体的技术问题。祝你好运。