异常
nicolelili1
这个作者很懒,什么都没留下…
展开
-
HTTP FAILED: java.net.UnknownServiceException: CLEARTEXT communication to baobab.kaiyanapp.com not
HTTP FAILED: java.net.UnknownServiceException: CLEARTEXT communication to baobab.kaiyanapp.com not permitted by network security policy原创 2023-08-03 19:43:13 · 396 阅读 · 0 评论 -
Extension with name ‘android‘ does not exist. Currently registered extension names: [ext, kotlin, ko
Caused by: org.gradle.api.UnknownDomainObjectException: Extension with name 'android' does not exist. Currently registered extension names: [ext, kotlin, kotlinTestRegistry]原创 2023-07-17 02:12:08 · 1035 阅读 · 0 评论 -
Failed to calculate the value of task ‘:xxx DebugJavaWithJavac‘ property ‘options.generatedSourceOut
Failed to calculate the value of task ':xxx DebugJavaWithJavac' property 'options.generatedSourceOut原创 2023-07-15 16:48:55 · 4577 阅读 · 0 评论 -
com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed
原因:返回的jason数据解析成对象时错误,可能是接口数据改变或者是本地对象字段不正确。解决办法:修改本地对象和接口返回数据一致。原创 2023-04-28 07:31:06 · 4141 阅读 · 1 评论 -
ndk at /library/android/sdk/ndk-bundle did not have a source.properties file
解决办法:在AndroidStudio中点击File -->project Structure--> SDK Location ---> Download Android NDK, 更新完成后问题解决。更新AndroidStudio 到 4.1.1+后出现的问题。原创 2023-04-19 07:37:30 · 1007 阅读 · 0 评论 -
Inheritance from an interface with ‘@JvmDefault‘ members is only allowed with -Xjvm-default option
问题:e: /Users/apple-wangguiye/AndroidStudioProjects/MyKotlin1/app/src/main/java/com/example/mykotlin1/viewmodel/FavDishViewModel.kt: (27, 7): Inheritance from an interface with '@JvmDefault' members is only allowed with -Xjvm-default option如下代码报错:c.原创 2022-05-06 18:01:57 · 2923 阅读 · 0 评论 -
Property getter or setter expected
问题:e: /Users/apple-wangguiye/AndroidStudioProjects/MyKotlin1/app/src/main/java/com/example/mykotlin1/model/entities/FavDish.kt: (9, 36): Property getter or setter expected原因:格式错误,参数应该放在参数列表的位置 room的entity有两种格式,一种是class形式,一种是data class...原创 2022-05-06 00:06:38 · 1138 阅读 · 0 评论 -
lateinit property mCustomListDialog has not been initialized
问题:kotlin.UninitializedPropertyAccessException: lateinit property mCustomListDialog has not been initialized at com.example.mykotlin1.AddUpdateDishActivity.selectedListItem(AddUpdateDishActivity.kt:249) at com.example.mykotlin1.adapters...原创 2022-05-05 18:25:26 · 974 阅读 · 0 评论 -
This Activity already has an action bar supplied by the window decor
问题:Caused by: java.lang.IllegalStateException: This Activity already has an action bar supplied by the window decor. Do not request Window.FEATURE_SUPPORT_ACTION_BAR and set windowActionBar to false in your theme to use a Toolbar instead. at and...原创 2022-05-03 18:53:33 · 1359 阅读 · 0 评论 -
创建的模拟器在AndroidStudio内部,设置其独立显示
1、问题界面如下显示2、Android Studio -->Preferences(windows系统的settings)--->Emulator--->取消勾选Launch in a tool window --->点击右下角的OK按钮 ---> 重启Android Studio3、重启模拟器后如图所示...原创 2022-05-03 15:42:06 · 8049 阅读 · 0 评论 -
androidx.navigation.fragment.NavHostFragment`, was not found in the project or the libraries
Class referenced in the layout file, `androidx.navigation.fragment.NavHostFragment`, was not found in the project or the libraries看不到导航按钮在build.gradle,添加下面的依赖For Java:-dependencies {def nav_version = "2.3.0"implementation "androidx.nav...转载 2022-05-01 19:17:36 · 1836 阅读 · 0 评论 -
服务端向客户端发送数据,但是客户端接收不到
问题:通过Socket,服务端向客户端发送数据时,客户端一直接收不到服务端发送代码:ClientWriteHandler.this.printStream.print(msg);原因:在socket代码中使用print方法时,要想将数据发送出去,必须在发送的数据后面添加”\n”换行符标识并且调用flush()方法。printwriter如果启用了自动刷新,则只有...转载 2020-01-14 18:47:05 · 4511 阅读 · 0 评论 -
Connection to tcp://39.96.3.215:1935 failed: Error number -138 occurred
1、搭建好nginx服务器,添加如下代码后浏览器输入地址可用正常访问,但是连接推流地址时报如下的错误:[tcp @ 000002ae90169540] Connection to tcp://39.96.3.215:1935 failed: Error number -138 occurred[rtmp @ 000002ae90169440] Cannot open connec...转载 2019-12-17 02:40:35 · 60839 阅读 · 0 评论 -
dpkg was interrupted, you must manually run 'sudo dpkg --configure -a' to correct the problem.
问题一:通过sudo命令更新文件时,dpkg was interrupted, you must manually run 'sudo dpkg --configure -a' to correct the problem.报如下的错误:dpkg was interrupted, you must manually run 'sudo dpkg --configure -a' to c...转载 2019-12-03 13:45:07 · 5383 阅读 · 0 评论 -
onPreviewFrame方法没有被调用
问题:设置preview的宽高为480x320cameral.setPreviewCallbackWithBuffer()方法必须设置addCallbackBuffer(buffers)后onPreviewFrame()方法才会被持续调用代码中正常设置了这两个方法,并且也添加并实现了回调方法实现接口:添加回调、设置buffer实现回调方法:...原创 2019-12-01 23:49:49 · 1563 阅读 · 0 评论 -
error: undefined reference to 'wav_open'
问题:1、使用OpenGL播放.wav格式视频时,创建了一个本地文件,该文件中调用了wav_开头的几个方法,并且在代码中该方法是没有报错的2、报找不到的的方法都定义在wavlib.h文件中3、该文件也引用了wavlib.h4、在CMakeLists中在静态库中指定了编译时需要的源文件,但是在编译需要生成的库时没有指定所需要的问题5、引用了头文件但是还是报如下的错...原创 2019-11-28 03:33:46 · 204 阅读 · 0 评论 -
error: non-constant-expression cannot be narrowed from type 'int' to 'SLuint32'
问题:wav_get_rate(wav)返回类型是unit16_t,然后与1000相乘后返回int类型但是需要返回unit32_t类型,然后报了下面的错误原因:返回的类型与所需要的类型不一致解决办法:将int类型转为unit类型...原创 2019-11-28 03:14:07 · 6398 阅读 · 1 评论 -
error: undefined reference to 'SL_IID_ENGINE'
问题:通过OpenGL进行视频播放,编译时报如下的错误error: undefined reference to 'SL_IID_ENGINE'error: undefined reference to 'SL_IID_BUFFERQUEUE'error: undefined reference to 'SL_IID_PLAY'原因:编译时找不到OpenSLES库解决...转载 2019-11-27 19:03:23 · 806 阅读 · 0 评论 -
accessed stale local reference 0x1d (index 7 in a table of size 1)
问题:JNI ERROR (app bug): accessed stale local reference 0x1d (index 7 in a table of size 1)JNI DETECTED ERROR IN APPLICATION: use of deleted local reference 0x1d定位到出问题的代码:原因:linux中局部变量不...转载 2019-11-24 01:18:36 · 501 阅读 · 0 评论 -
ubuntu使用NDK r-10后,Android中使用r-10c版本出现的问题
Android studio使用ndk-r10ERROR: Parameter specified as non-null is null: method com.android.build.gradle.internal.cxx.configu原因:ndk版本太低,需要更新到最新版本的sdk解决办法:将最新版本sdk中的source.properties拷贝到当前版本的sdk...转载 2019-11-21 20:20:11 · 216 阅读 · 0 评论 -
Cannot run program "sh": Launching failed
问题:eclipse中给项目配置了如下的ndk地址cmd进目录“D:\A\software\ndk\android-ndk-r20”,ndk-build命令是可以正常执行的,但是eclipse中却报如下的错误:02:57:14 **** Incremental Build of configuration Default for project dn_ffmpeg_player ...原创 2019-11-21 03:07:14 · 2050 阅读 · 0 评论 -
将windows文件转换成linux的软件
安装命令:apt install dos2unix2、将某个文件从window格式转换为unix格式dos2unix build_android.sh (dos2unix + 文件名)原创 2019-11-18 22:00:09 · 1521 阅读 · 0 评论 -
segmentation fault
代码字符指针放到常量区是无法修改的,修改会报错运行文件后报如下的错误编译时需要指定 -g定位办法:1、查看core文件是否分配大小异常信息会保存到core file size里面,现在它的大小是0表明没有开启,无法保存2、创建的core文件大小为1024字节3、执行后将异常退出信息保存到core文件中4、查看异常信...原创 2019-11-18 01:25:34 · 789 阅读 · 0 评论 -
Unable to locate package manpages-posix-dev
问题:执行命令sudo apt-get install manpages-posix-dev后出现如下提示:Unable to locate package manpages-posix-dev解决办法:需要提前执行一下命令:sudo apt-get update然后再执行 sudo apt-get install manpages-posix-dev...原创 2019-11-17 02:59:10 · 1501 阅读 · 1 评论 -
伪目标防止构建非终极目标时出错 make: 'clean' is up to date.
问题:编译的脚本如下:执行make clean命令后报如下错误make: 'clean' is up to date.原因:直接make,构建的是终极目标构建非终极目标 如make main.o、make clean等时,如果有与命令相同的文件时,会出现如上的错误中解决办法:使用伪目标...原创 2019-11-16 16:36:11 · 357 阅读 · 0 评论 -
If gcc is a cross-compiler, use the --enable-cross-compile option.
问题:编译build_configure文件如下,并执行该脚本运行后报如下错误:gcc is unable to create an executable file.If gcc is a cross-compiler, use the --enable-cross-compile option.Only do this if you know what cross compi...原创 2019-11-16 01:08:52 · 2956 阅读 · 0 评论 -
yasm/nasm not found or too old. Use --disable-yasm for a crippled build.
问题:使用./configure执行命令时报如下错误yasm/nasm not found or too old. Use --disable-yasm for a crippled build.解决办法:按提示所示,加上参数: --disable-yasm...原创 2019-11-15 22:45:54 · 1626 阅读 · 0 评论 -
-bash: ./configure: Permission denied
问题:解压ffmpeg文件夹后,执行./configure命令时报如下的错误-bash: ./configure: Permission denied原因:configure并不是一个可执行的文件解密办法:给 configure赋执行权限777chmod 777 configure...原创 2019-11-15 03:23:30 · 1237 阅读 · 0 评论 -
Unable to locate package unzip
问题:执行安装命令“apt install unzip”后报下面的错误解决办法:执行 apt-get install 命令前先执行一下命令 apt-get update,等该命令结束后再执行install命令先执行update命令然后执行install命令...原创 2019-11-13 01:23:24 · 6657 阅读 · 0 评论 -
The program 'unzip' is currently not installed. You can install it by typing: apt install unzip
问题:The program 'unzip' is currently not installed. You can install it by typing:apt install unzip原因:没有安装 “unzip”指令解决办法:输入命令 "apt install unzip" 进行安装...原创 2019-11-13 01:12:02 · 1288 阅读 · 0 评论 -
ndk集成fmod过程中遇到的问题
1、F:\kotlin\flutter_trip\flutter_trip\qq_voicer_change\app\src\main\jni/common.h:9:10: fatal error: 'fmod.h' file not found原因:common.h与fmod.h不在同一个文件夹下导致引用不到头文件 fmod.h解决办法:include fmod.h完整的路...原创 2019-11-11 04:10:36 · 619 阅读 · 0 评论 -
错误 36 error LNK2019: 无法解析的外部符号 random
错误 36 error LNK2019: 无法解析的外部符号 random原因:在vc++中程序中用了srandom()和random(),头文件为stdlib.h,但编译出现错误error C3861: “srandom”: 找不到标识符。 原因是现在vc++编译器的库函数中没有randomize()和random(),分别用srand()和rand()代替了。...原创 2019-11-10 23:52:17 · 1819 阅读 · 1 评论 -
错误 34 error LNK2019: 无法解析的外部符号 srandom
错误 34 error LNK2019: 无法解析的外部符号 srandom原因:在vc++中程序中用了srandom()和random(),头文件为stdlib.h,但编译出现错误error C3861: “srandom”: 找不到标识符。 原因是现在vc++编译器的库函数中没有randomize()和random(),分别用srand()和rand()代替了。...原创 2019-11-10 23:50:12 · 807 阅读 · 0 评论 -
The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name
运行项目报下面的错:错误 16 error C4996: 'fileno': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _fileno. See online help for details. E:\c\bsdiff\bsdiff\dlltest...原创 2019-11-10 19:22:36 · 1517 阅读 · 0 评论 -
NDK_PROJECT_PATH=null 、finished with non-zero exit value 2
通过android studio开发ndk,在 make project过程中程序中断,报如下提示Process 'command 'C:\Users\Administrator\AppData\Local\Android\Sdk\ndk-bundle\ndk-build.cmd'' finished with non-zero exit value 2Caused by:...原创 2019-11-09 20:57:00 · 544 阅读 · 0 评论 -
Error: Flag android.useDeprecatedNdk is no longer supported and will be removed in the next version
ndk使用make过程中报如下错误:Error: Flag android.useDeprecatedNdk is no longer supported and will be removed in the next version of Android Studio. Please switch to a supported build system.Consider using CM...原创 2019-11-09 20:30:09 · 1129 阅读 · 0 评论 -
error C2065:"null":未声明的标识符
问题:在使用visual studio进行编译的时候出现如下错误error C2065:"null":未声明的标识符原因:1、没有引用相应的头文件2、引用头文件的顺序不对解决办法:引用相应的头文件并修改其头文件的使用顺序如:在头文件中使用到了jstring类,那么需要引入头文件string.h并且放在自定义头文件com_dongnaoedu_jni_Jn...原创 2019-11-06 16:12:50 · 3051 阅读 · 0 评论 -
Error:存在正文时不允许未命名的原型参数
问题:Error:存在正文时不允许未命名的原型参数描述:.h文件中的方法拷贝到c文件中后报错:Error:存在正文时不允许未命名的原型参数原因:参数类型后没加参数名,加上参数名就可以了解决:加上参数名...原创 2019-10-23 19:47:41 · 15084 阅读 · 1 评论 -
Exception in thread "main" java.lang.UnsatisfiedLinkError:no jni_study in java.library.path
一、找不到.dll文件Exception in thread "main" java.lang.UnsatisfiedLinkError:Exception in thread "main" java.lang.UnsatisfiedLinkError: no jni_study in java.library.path at java.lang.ClassLoader.loadL...原创 2019-10-23 19:28:35 · 2828 阅读 · 0 评论 -
javah命令报 错误: 找不到 'com.dongnaoedu.jni.MyTest' 的类文件。
问题:执行javah命令报错误: 找不到 'com.dongnaoedu.jni.MyTest' 的类文件。描述:1、在目录C:\Users\Administrator\IdeaProjects\jnistudy\src下有一个以 "com.dongnaoedu.jni"为包名的文件MyTest2、完整的地址目录为:3、文件内容为:解决办法:跳转到src目录...原创 2019-10-22 22:35:22 · 604 阅读 · 0 评论