摘要: 1.建库,建表2个用户表(id,用户名,密码)邮件表(id,发件人,收件人,标题,内容,发送时间,状态) 2.建model层entity,dao包 3.登陆,注册,登陆后显示全部邮件 package psw; import java.sql.Connection; import java.sql.D 阅读全文
posted @ 2022-05-15 17:03 别急 阅读(4) 评论(0) 推荐(0) 编辑
摘要: package text; public class Book { private String id; private String name; private double price; public String getId() { return id; } public void setId 阅读全文
posted @ 2022-05-01 13:23 别急 阅读(30) 评论(0) 推荐(0) 编辑
摘要: <head> <title>1</title> </head> <body bgcolor=#ffccff> <% double price=98.78; %> <p style="font-family:宋体;font-size:36;color:blue"> 商品编号A1001,价格8765 < 阅读全文
posted @ 2022-04-17 15:37 别急 阅读(11) 评论(0) 推荐(0) 编辑
摘要: <head> <title>My JSP 'index.jsp' starting page</title> </head> <body> <form action="162.jsp" method="post"> 用户名:<input type="text" name="uname" minlen 阅读全文
posted @ 2022-04-10 17:29 别急 阅读(13) 评论(0) 推荐(0) 编辑
摘要: <html> 2 <head> 3 <title>My JSP 'index.jsp' starting page</title> 4 <meta charset = "utf-8"> 5 </head> 6 7 <body bgcolor = cyan> 8 <br>英文课文(English Te 阅读全文
posted @ 2022-04-03 15:02 别急 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 1.环境搭建,运行出来一个JSP页面,显式hello <%@ page contentType="text/html;charset=UTF-8" language="java" %> <html> <head> <title>First</title> </head> <body> hello < 阅读全文
posted @ 2022-03-06 11:15 别急 阅读(13) 评论(0) 推荐(0) 编辑
摘要: package cn.itcast.checkbox; import android.os.Bundle; import android.app.Activity; import android.content.Intent; import android.view.Menu; import and 阅读全文
posted @ 2021-11-04 21:52 别急 阅读(22) 评论(0) 推荐(0) 编辑
摘要: com.example.wyp; import android.os.Bundle; import android.app.Activity; import android.content.Intent; import android.view.Menu; import android.view.V 阅读全文
posted @ 2021-10-09 16:54 别急 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 一、返回键实现对话框弹出是否退出应用程序 package com.example.a; import android.os.Bundle; import android.app.Activity; import android.app.AlertDialog; import android.app. 阅读全文
posted @ 2021-09-25 15:26 别急 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 1、定义一个点类Point, 包含2个成员变量x、y分别表示x和y坐标,2个构造器Point()和Point( intx0,y0),以及一个movePoint (int dx,intdy)方法实现点的位置移动,创建两个Point对象p1、p2, 分别调用movePoint方法后,打印pl和p2的坐标 阅读全文
posted @ 2021-05-25 19:06 别急 阅读(151) 评论(0) 推荐(0) 编辑