05 2023 档案

摘要:<%-- Created by IntelliJ IDEA. User: 绿波亭 Date: 2023/5/29 Time: 17:34 To change this template use File | Settings | File Templates. --%> <%@ page conte 阅读全文
posted @ 2023-05-31 22:08 子过杨梅 阅读(4) 评论(0) 推荐(0) 编辑
摘要:import tkinter as tk import tkinter.ttk as ttk import datetime import calendar today_date=datetime.date.today() today_date_year = int(today_date.year) 阅读全文
posted @ 2023-05-30 20:41 子过杨梅 阅读(139) 评论(0) 推荐(0) 编辑
摘要:创建和添加HttpSession session = request.getSession();session.setAttribute("customerInfo","1");12设置过期时长:1.1:在主页面或者公共页面中加入:session.setMaxInactiveInterval(15* 阅读全文
posted @ 2023-05-29 22:05 子过杨梅 阅读(16) 评论(0) 推荐(0) 编辑
摘要:1) 定义: char: 固定长度,存储ANSI字符,不足的补英文半角空格。 nchar: 固定长度,存储Unicode字符,不足的补英文半角空格 varchar: 可变长度,存储ANSI字符,根据数据长度自动变化。 nvarchar: 可变长度,存储Unicode字符,根据数据长度自动变化。 nv 阅读全文
posted @ 2023-05-27 18:59 子过杨梅 阅读(100) 评论(0) 推荐(0) 编辑
摘要:String sql = "select * from activity where activity_sub Like '%"+str+"%'"; Class.forName("com.mysql.jdbc.Driver"); String url = "jdbc:mysql://localhos 阅读全文
posted @ 2023-05-25 21:33 子过杨梅 阅读(7) 评论(0) 推荐(0) 编辑
摘要:勾选服务器块中第二栏 阅读全文
posted @ 2023-05-25 09:48 子过杨梅 阅读(4) 评论(0) 推荐(0) 编辑
摘要:对于开课目标: 对于手机上的小游戏仅仅绘制了游戏的界面xml,但由于android stdio配置问题,导致项目被删除(当时的博客也说明了此事),也和老师当面讲清了这件事。 《构建之法》这本书提出的五个问题是: 如何将部分整合为一个具有执行力的整体? 如何在持续改进的环境中,构建一个有效的开发、测试 阅读全文
posted @ 2023-05-23 17:32 子过杨梅 阅读(9) 评论(0) 推荐(0) 编辑
摘要:软件工程是一项涵盖广泛的领域,我们在课程中学习了许多知识和技能,其中包括软件项目管理、软件开发生命周期、需求分析、设计原则、编码实践、测试策略以及架构模式等重要内容。以下是我对这些主题的一些总结和心得体会: 软件项目管理 软件项目管理是软件工程过程中必不可少的环节。在此课程中,我们了解了项目管理流程 阅读全文
posted @ 2023-05-23 17:00 子过杨梅 阅读(143) 评论(0) 推荐(0) 编辑
摘要:<%@ page import="wangzhan.Thesql" %> <%@ page import="com.mysql.cj.Session" %> <%@ page language="java" contentType="text/html; charset=UTF-8" pageEnc 阅读全文
posted @ 2023-05-23 00:18 子过杨梅 阅读(10) 评论(0) 推荐(0) 编辑
摘要:针对抖音提出的四个方面的评价(其实是五个): 用户界面 优点:抖音的用户界面设计简洁、直观,按钮排布合理,容易学习和理解,同时可以根据用户的兴趣爱好为其展示相应的内容,提高了用户使用体验。 缺点:有些用户可能会认为抖音应用程序中的一些按钮和功能有点过于复杂或繁琐,难以快速上手和操作。此外,抖音在推荐 阅读全文
posted @ 2023-05-20 10:44 子过杨梅 阅读(374) 评论(0) 推荐(0) 编辑
摘要:<a href="javascript:history.back(-1)"><button type="button">返回</button></a> 阅读全文
posted @ 2023-05-19 21:57 子过杨梅 阅读(12) 评论(0) 推荐(0) 编辑
摘要:// Copyright (c) 2006 Damien Miller <djm@mindrot.org> // // Permission to use, copy, modify, and distribute this software for any // purpose with or w 阅读全文
posted @ 2023-05-18 21:26 子过杨梅 阅读(11) 评论(0) 推荐(0) 编辑
摘要:Class.forName("com.mysql.cj.jdbc.Driver"); 阅读全文
posted @ 2023-05-17 21:55 子过杨梅 阅读(9) 评论(0) 推荐(0) 编辑
摘要:public Connection connect; public Thesql()throws Exception { Class.forName("com.mysql.jdbc.Driver"); String url="jdbc:mysql://localhost:3306/pddabc?us 阅读全文
posted @ 2023-05-16 22:08 子过杨梅 阅读(11) 评论(0) 推荐(0) 编辑
摘要:target=“_blank” 在<a>内写入 阅读全文
posted @ 2023-05-15 22:03 子过杨梅 阅读(19) 评论(0) 推荐(0) 编辑
摘要:import java.io.File;import java.awt.Desktop; public class OpenFileExample { public static void main(String[] args) { String filePath = "C:\\Users\\Use 阅读全文
posted @ 2023-05-12 22:11 子过杨梅 阅读(2) 评论(0) 推荐(0) 编辑
摘要:<%@ page import="wangzhan.Thesql" %> <%@ page import="com.mysql.cj.Session" %> <%@ page language="java" contentType="text/html; charset=UTF-8" pageEnc 阅读全文
posted @ 2023-05-11 21:33 子过杨梅 阅读(7) 评论(0) 推荐(0) 编辑
摘要:import java.io.File; public class FileTraversal { public static void main(String[] args) { // 要遍历的文件路径 String filePath = "C:\\Users\\username\\Documen 阅读全文
posted @ 2023-05-10 21:08 子过杨梅 阅读(19) 评论(0) 推荐(0) 编辑
摘要:与文件管理系统和文件集合相关联的是文件目录,它包含有关文件的信息,包括属性、 位置和所有权等,这些信息主要是由操作系统进行管理。首先我们来看目录管理的基本要求: 从用户的角度看,目录在用户(应用程序)所需要的文件名和文件之间提供一种映射,所以目录管理要实现“按名存取”;目录存取的效率直接影响到系统的 阅读全文
posted @ 2023-05-09 20:47 子过杨梅 阅读(66) 评论(0) 推荐(0) 编辑
摘要:<textarea name="" id="" cols="30" rows="10"></textarea> 阅读全文
posted @ 2023-05-05 21:55 子过杨梅 阅读(12) 评论(0) 推荐(0) 编辑
摘要:button[type=submit] { background-color: #4CAF50; color: white; padding: 10px 20px; border: none; border-radius: 5px; cursor: pointer; margin-top: 10px 阅读全文
posted @ 2023-05-04 23:16 子过杨梅 阅读(18) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示