sqlite将查询结果导出到文件

1
2
3
4
.separator "\t"
.output a.txt
SELECT name,?id FROM student;
.output stdout

这样就可把生成的a.txt导入到excel里了。

注意,sqlite导出的文本是unix格式,直接记事本打开看不到换行。

opencv 抠子图

1
2
3
4
5
6
7
#include <opencv2/opencv.hpp>
 
using namespace cv;
 
Mat imgBig = imread("d:/big.jpg");
Mat imgSmall = imgBig(cv::Rect(x, y, w, h));
imwrite("d:/small.jpg", imgSmall);

SpringBoot Maven Eclipse Debug

先看这个网页:

https://blog.csdn.net/qq_36994788/article/details/76342623

到http://start.spring.io/下把工程建起来。

在pom.xml中加入:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<build>
	<plugins>
		<plugin>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-maven-plugin</artifactId>
 
			<configuration>
			<jvmArguments>
				-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005
			</jvmArguments>
			</configuration>
 
		</plugin>
	</plugins>
</build>

工程右键选择Debug As-〉Maven Build,在Goals中填入:

clean install -Ptest -X spring-boot:run

点执行就可以调试了。

近一步学习的资源:

https://blog.csdn.net/panchao888888/article/details/81060565