1

我正在尝试编辑音频文件的标签,为此我正在使用 JaudioTagger。但是存在一个问题,我无法弄清楚。

我收到此错误:

java.lang.NoSuchMethodError: No virtual method toPath()Ljava/nio/file/Path; in class Ljava/io/File; or its super classes (declaration of 'java.io.File' appears in /system/framework/core-oj.jar)

还有我获取音频文件标签的代码:

            File path = new File(songInfoModel.getData());
            Log.e("Path: ", path.toString());
            try {
                AudioFile f = AudioFileIO.read(path);
                Tag tag = f.getTag();
                String artist = tag.getFirst(FieldKey.ARTIST);
                tag.getFirst(FieldKey.ALBUM);
                tag.getFirst(FieldKey.TITLE);
                tag.getFirst(FieldKey.COMMENT);
                tag.getFirst(FieldKey.YEAR);
                tag.getFirst(FieldKey.TRACK);
                tag.getFirst(FieldKey.DISC_NO);
                tag.getFirst(FieldKey.COMPOSER);
                tag.getFirst(FieldKey.ARTIST_SORT);

                Log.e("Artist: ",artist);
            } catch (CannotReadException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
            } catch (TagException e) {
                e.printStackTrace();
            } catch (ReadOnlyFileException e) {
                e.printStackTrace();
            } catch (InvalidAudioFrameException e) {
                e.printStackTrace();
            }
4

0 回答 0