qwb0614

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
  187 随笔 :: 0 文章 :: 0 评论 :: 2011 阅读

03 2023 档案

摘要:<%@ page contentType="text/html;charset=UTF-8" language="java" isELIgnored="false" %> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 阅读全文
posted @ 2023-03-31 20:41 嘎嘎鸭1 阅读(2) 评论(0) 推荐(0) 编辑

摘要:1.登录 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" 阅读全文
posted @ 2023-03-30 20:25 嘎嘎鸭1 阅读(14) 评论(0) 推荐(0) 编辑

摘要:package com.example.myapplication; import androidx.appcompat.app.AlertDialog; import androidx.appcompat.app.AppCompatActivity; import android.app.Acti 阅读全文
posted @ 2023-03-30 20:24 嘎嘎鸭1 阅读(9) 评论(0) 推荐(0) 编辑

摘要:<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" an 阅读全文
posted @ 2023-03-30 20:24 嘎嘎鸭1 阅读(12) 评论(0) 推荐(0) 编辑

摘要:package com.example.myapplication; import androidx.activity.result.ActivityResult; import androidx.activity.result.ActivityResultCallback; import andr 阅读全文
posted @ 2023-03-24 22:04 嘎嘎鸭1 阅读(8) 评论(0) 推荐(0) 编辑

摘要:<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" an 阅读全文
posted @ 2023-03-24 22:04 嘎嘎鸭1 阅读(8) 评论(0) 推荐(0) 编辑

摘要:<template> <div> <div ref="chart2" style="width: 1500px;height:710px;margin: auto;"></div> </div> </template> <script> import {mapData} from "../asset 阅读全文
posted @ 2023-03-24 22:04 嘎嘎鸭1 阅读(14) 评论(0) 推荐(0) 编辑

摘要:<template> <div> <!-- <div @click="goBack()">返回</div> --> <div ref="chart" style="width: 1500px;height:700px;margin: auto;"></div> </div> </template> 阅读全文
posted @ 2023-03-21 21:10 嘎嘎鸭1 阅读(10) 评论(0) 推荐(0) 编辑

摘要:第三章 三思而后行:前期准备 根据数据,引入错误到发现错误的时间越长,修正错误的消费越大。进行充分的前期准备可以将需求、设计上的错误扼杀于萌芽。 软件大致分三种:商业系统、使命攸关的系统、使命攸关的嵌入式系统。 我们的项目属于商业系统,推荐采用敏捷的、增量式的开发,计划、管理可以非正式,需求可以非形 阅读全文
posted @ 2023-03-20 22:06 嘎嘎鸭1 阅读(10) 评论(0) 推荐(0) 编辑

摘要:""" """ class Record: def __init__(self,date,order_id,money,province): self.date=date self.order_id=order_id self.money=money self.province=province d 阅读全文
posted @ 2023-03-17 21:46 嘎嘎鸭1 阅读(15) 评论(0) 推荐(0) 编辑

摘要:<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <!-- <script src="js/echarts.min.js"></script>--> <!-- <script src 阅读全文
posted @ 2023-03-17 21:46 嘎嘎鸭1 阅读(14) 评论(0) 推荐(0) 编辑

摘要:<!DOCTYPE html> <html lang="en" xmlns=""> <head> <meta charset="UTF-8"> <title>品牌</title> </head> <body> <div id="subway"> <template> <el-tabs :tab-po 阅读全文
posted @ 2023-03-17 21:45 嘎嘎鸭1 阅读(6) 评论(0) 推荐(0) 编辑

摘要:1.index.html <!DOCTYPE html> <html lang="en" xmlns=""> <head> <meta charset="UTF-8"> <title>品牌</title> </head> <body> <div id="subway"> <template> <el 阅读全文
posted @ 2023-03-14 22:51 嘎嘎鸭1 阅读(12) 评论(0) 推荐(0) 编辑

摘要:第一章 欢迎进入软件构建的世界 软件构建的定义:包括编码与调试、单元测试、规划构建、集成等,没有给出一个明确的定义。 软件构建的重要性:软件构建是编写大型项目最重要的、不可或缺的部分。 第二章 用隐喻来更充分地理解软件开 对软件开发地隐喻不是明确的标准,而是微妙的启发,所以不要被隐喻限制而远离“不符 阅读全文
posted @ 2023-03-13 23:45 嘎嘎鸭1 阅读(6) 评论(0) 推荐(0) 编辑

摘要:package com.itheima.pojo; import java.util.Arrays; import java.util.List; public class User { private String name; private Integer xuehao; private Str 阅读全文
posted @ 2023-03-10 21:55 嘎嘎鸭1 阅读(8) 评论(0) 推荐(0) 编辑

摘要:package com.itheima.service; import com.itheima.mapper.UserMapper; import com.itheima.pojo.User; import com.itheima.util.SqlSessionFactoryUtils; impor 阅读全文
posted @ 2023-03-09 20:57 嘎嘎鸭1 阅读(9) 评论(0) 推荐(0) 编辑

摘要:package com.itheima.web; import com.itheima.pojo.User; import com.itheima.service.UserService; import javax.servlet.*; import javax.servlet.http.*; im 阅读全文
posted @ 2023-03-09 20:56 嘎嘎鸭1 阅读(16) 评论(0) 推荐(0) 编辑

摘要:package com.itheima.web; import com.itheima.pojo.User; import com.itheima.service.UserService; import javax.servlet.ServletException; import javax.ser 阅读全文
posted @ 2023-03-07 21:47 嘎嘎鸭1 阅读(3) 评论(0) 推荐(0) 编辑

摘要:package com.itheima.web; import com.itheima.pojo.User; import com.itheima.service.UserService; import javax.servlet.*; import javax.servlet.http.*; im 阅读全文
posted @ 2023-03-06 20:42 嘎嘎鸭1 阅读(9) 评论(0) 推荐(0) 编辑

摘要:public class Test1 { public static void main(String[] args) throws IOException { // TODO 自动生成的方法存根 String filename ="E:\\123.txt"; File a=new File(fil 阅读全文
posted @ 2023-03-05 18:15 嘎嘎鸭1 阅读(15) 评论(0) 推荐(0) 编辑

摘要:package com.itheima.web; import com.itheima.pojo.User; import com.itheima.service.UserService; import javax.servlet.*; import javax.servlet.http.*; im 阅读全文
posted @ 2023-03-03 21:39 嘎嘎鸭1 阅读(15) 评论(0) 推荐(0) 编辑

摘要:<%@ page contentType="text/html;charset=UTF-8" language="java" isELIgnored="false" %> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 阅读全文
posted @ 2023-03-01 19:48 嘎嘎鸭1 阅读(21) 评论(0) 推荐(0) 编辑

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