随笔都是学习笔记
随笔仅供参考,为避免笔记中可能出现的错误误导他人,请勿转载。
摘要: 给input标签添加name="xxx"属性即可: 性别:<input type="radio" name="sex" value="girl">女 <input type="radio" name="sex" value="boy" checked="checked">男 阅读全文
posted @ 2022-12-02 21:51 时间完全不够用啊 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 代码: <!doctype html> <html> <head> <meta charset="UTF-8"> <title>圆形按钮</title> </head> <style type="text/css"> input[type="checkbox"] { width: 1.2rem; h 阅读全文
posted @ 2022-12-02 15:29 时间完全不够用啊 阅读(369) 评论(0) 推荐(0) 编辑
摘要: 简单写入: File file = new File("G:\\870_2_Files\\Test\\os.txt"); String s = "123"; OutputStream os = Files.newOutputStream(file.toPath()); os.write(s.getB 阅读全文
posted @ 2022-12-02 11:05 时间完全不够用啊 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 需要添加一个jar包(百度就行很多): package com.seeyon.apps.watermark.utils; import com.itextpdf.text.pdf.PdfContentByte; import com.spire.doc.*; import com.spire.doc 阅读全文
posted @ 2022-12-02 10:57 时间完全不够用啊 阅读(317) 评论(0) 推荐(0) 编辑
摘要: 举个例子,后端向jsp中传递了一个参数是一个对象 当jsp进行引用${bean.xxx}时bean中没有xxx属性,那么就会报这个错 看看是不是jsp更新了对应的类没有更新 解决方式很简单,要么jsp和类的版本保持一致,要么就jsp还原。 阅读全文
posted @ 2022-12-02 10:37 时间完全不够用啊 阅读(1675) 评论(0) 推荐(0) 编辑