最近再做spring junit 做单元测试中,报 Failed to load ApplicationContext 错误。 import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.bea ...
分类:
移动开发 时间:
2020-06-30 12:38:56
阅读次数:
60
1、验证码生成代码 import random import string import os.path from io import BytesIO from PIL import Image from PIL import ImageFilter from PIL.ImageDraw impor ...
分类:
其他好文 时间:
2020-06-30 00:54:25
阅读次数:
89
Motivation 利用tensorflow进行读写时,经常因为没有创建相应的文件夹而导致保存weights/models/log等失败,加载时也容易产生错误,为了避免这种错误,在自己的框架中需要实现如下功能: 在按路径读写时,如果找不到相应的路径,需要程序自动创建文件夹,并进行数据的保存。 实现 ...
分类:
编程语言 时间:
2020-06-29 15:39:10
阅读次数:
84
AES128Bit ECB加解密算法: public static String Encrypt(String data,String key) throws Exception{ byte[] raw = HexUtils.hexStr2ByteArr(key); SecretKeySpec sk ...
分类:
编程语言 时间:
2020-06-28 15:38:25
阅读次数:
68
组合模式以及HashMap的设计分析(不包括具体实现,只讲述了HashMap应用到组合模式的场景,之后会单独再写一个JAVA集合类的具体实现专题) ...
分类:
其他好文 时间:
2020-06-28 15:26:46
阅读次数:
62
1.app.py from flask import Flask,render_template import sqlite3 app = Flask(__name__) @app.route('/') def index(): return render_template("index.html" ...
分类:
Web程序 时间:
2020-06-27 19:57:27
阅读次数:
71
io.open(): some_file=io.open('somefile.txt','w+') .close(): .flush():刷新缓存,好像有时没用? .read(n):读取字符个数 .readline():读取一行字符:也可以指定字符个数 .readlines():返回所有行;也可以指 ...
分类:
其他好文 时间:
2020-06-27 17:26:55
阅读次数:
75
练习1: 有这样的一个words数组,数组中每个字符串的格式为“词性:单词” String[] words = {"verb:eat","verb:drink","verb:sleep","verb:play","noun:rice","noun:meat","noun:hand","noun:ha ...
分类:
编程语言 时间:
2020-06-27 00:22:31
阅读次数:
53
生产者消费者模式2-->信号灯法 public class TestPC2 { public static void main(String[] args) { TV tv = new TV(); new Player(tv).start(); new Watcher(tv).start(); } ...
分类:
其他好文 时间:
2020-06-26 22:41:43
阅读次数:
74
Java工具类——包装类 我们都知道,JDK 其实给我们提供了很多很多 Java 开发者已经写好的现成的类,他们其实都可以理解成工具类,比如我们常见的集合类,日期相关的类,数学相关的类等等,有了这些工具类,你会发现它能很大程度的帮你节省时间,能很方便的实现你的需求。当然,没有这些包,你也能实现你的需 ...
分类:
编程语言 时间:
2020-06-26 19:56:48
阅读次数:
70