将音乐循环预设存储在本地存储中

时间:2022-03-25 16:32:24

I'm building a Music application for desktop by using Java, I need to store some local data like the music loops preset. The application that I did is allow user to drag and drop the music loop to generate music. The music loop preset will be .wma file, so is that possible that i store all the .wma music loops in a local storage? Do I need other database management system like MySQL to achieve this? Thank you.

我正在使用Java构建桌面音乐应用程序,我需要存储一些本地数据,如音乐循环预设。我做的应用程序允许用户拖放音乐循环以生成音乐。音乐循环预设将是.wma文件,那么我可以将所有.wma音乐循环存储在本地存储中吗?我需要像MySQL这样的其他数据库管理系统来实现这一目标吗?谢谢。

1 个解决方案

#1


0  

If i understood your problem correctly, you need to store .WMAs somewhere in your disk. You don't need a MySQL DataBase to store them, you can just store them on disk as regular files. Keep them in the software directory, inside some sub-folder. You can access them and store them and it won't interfere (hopefully) with other programs and files.

如果我正确理解您的问题,您需要将.WMA存储在磁盘中的某个位置。您不需要MySQL数据库来存储它们,您可以将它们作为常规文件存储在磁盘上。将它们保存在软件目录中的某个子文件夹中。您可以访问它们并存储它们,它不会干扰(希望)与其他程序和文件。

#1


0  

If i understood your problem correctly, you need to store .WMAs somewhere in your disk. You don't need a MySQL DataBase to store them, you can just store them on disk as regular files. Keep them in the software directory, inside some sub-folder. You can access them and store them and it won't interfere (hopefully) with other programs and files.

如果我正确理解您的问题,您需要将.WMA存储在磁盘中的某个位置。您不需要MySQL数据库来存储它们,您可以将它们作为常规文件存储在磁盘上。将它们保存在软件目录中的某个子文件夹中。您可以访问它们并存储它们,它不会干扰(希望)与其他程序和文件。