参考:https://blog.csdn.net/KKALL1314/article/details/81915354 https://forum.qt.io/topic/80301/file-not-recognized-file-format-not-recognized-error 背景:在Ubuntu下 QT环境中添加讯飞语音库 要求:.so文件要经过交叉编译,否则报错:“error: file not recognized: File format not recognized” 过…
原文:分享非常有用的Java程序 (关键代码) (二)---列出文件和目录 File dir = new File("directoryName"); String[] children = dir.list(); if (children == null) { // Either dir does not exist or is not a directory } else { for (int i=0; i < children.length; i++) { // Get f…