根据进程名,获取对应进程PID strace -o /sdcard/LogKit/output_wificond.txt -T -ttt -e trace=all -p `ps -A | grep wificond | awk '{print $2}'` strace -o /sdcard/LogK ...
分类:
其他好文 时间:
2021-03-18 14:14:50
阅读次数:
0
在gradle里设置databinding dataBinding{ enabled = true}在布局文件里 <?xml version="1.0" encoding="utf-8"?><layout xmlns:android="http://schemas.android.com/apk/r ...
分类:
移动开发 时间:
2021-03-18 13:59:30
阅读次数:
0
针对Android 7.0及以上版本的系统,不信任用户添加的证书,无法抓HTTPS包问题的解决方法。 1、无需root,使用XPosed框架+JustTrustMe :https://www.cnblogs.com/xiaochao-testing/p/13985602.html 2、在APK包可以 ...
分类:
移动开发 时间:
2021-03-17 14:27:54
阅读次数:
0
Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'elasticsearchTemplate' defined in class pa ...
分类:
编程语言 时间:
2021-03-17 14:15:07
阅读次数:
0
1485下载地址 https://docs.qq.com/doc/DWEpnR2pOWU91b3p4?pub=1&dver=2.1.0 #include <reg51.h> #include <intrins.h> #define uchar unsigned char #define uint u ...
分类:
其他好文 时间:
2021-03-17 14:10:52
阅读次数:
0
一、相关依赖 <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> < ...
分类:
其他好文 时间:
2021-03-17 14:08:25
阅读次数:
0
各类表达式概览·C#语言中表达式的分类·A value.Every value has an associated type.任何能得到值的运算(回顾操作符和结果类型)·A variable.Every variable has an associated type.·A namespace.·A ...
88. 合并两个有序数组 LeetCode_88 题目描述 方法一:暴力法 class Solution { public void merge(int[] nums1, int m, int[] nums2, int n) { for(int i=0, j=0; j<n;){ if(i >= m ...
分类:
编程语言 时间:
2021-03-16 11:51:29
阅读次数:
0
增添数据到数据库 package com.jdbc; import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.ResultSet; im ...
分类:
编程语言 时间:
2021-03-16 11:40:11
阅读次数:
0
#include<bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int,int> PII; #define ls l,mid,rt<<1 #define rs mid+1,r,rt<<1|1 const ...
分类:
其他好文 时间:
2021-03-15 11:08:22
阅读次数:
0