上一页 1 ··· 6 7 8 9 10 11 12 13 14 15 下一页
摘要: 继昨天编写的内容之后,将剩余的部分补完并进行了调试 MainActivity的代码 public class MainActivity extends AppCompatActivity { private List<CostBean> mCostBeenList; private Database 阅读全文
posted @ 2022-02-08 22:47 灰幕 阅读(34) 评论(0) 推荐(0)
摘要: 今天了解了安卓程序开发的内容,根据示例练习理解安卓与以往学习的内容的不同之处,也尝试编程了记账本的内容。 在content_main.xml中添加 <ListView android:id="@+id/lv_main" android:layout_width="wrap_content" andr 阅读全文
posted @ 2022-02-07 22:31 灰幕 阅读(42) 评论(0) 推荐(0)
摘要: index.jsp <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <% String path = request.getContextPath(); String basePath = request.ge 阅读全文
posted @ 2022-01-23 20:10 灰幕 阅读(30) 评论(0) 推荐(0)
摘要: bookList.jsp <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <%@ include file="/header.jsp"%> <br /> <hr /> <br /> <table border= 阅读全文
posted @ 2022-01-22 20:14 灰幕 阅读(23) 评论(0) 推荐(0)
摘要: exception包QueryBookException类 public class QueryBookException extends RuntimeException { public QueryBookException() { } public QueryBookException(Str 阅读全文
posted @ 2022-01-20 21:24 灰幕 阅读(34) 评论(0) 推荐(0)
摘要: servlet包ControlServlet类 private void delBook(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { String b 阅读全文
posted @ 2022-01-19 19:42 灰幕 阅读(30) 评论(0) 推荐(0)
摘要: BusinessService类 public interface BusinessService { void addBook(Book book); Page findAllBook(String pagenum); void userRegister(User user); User user 阅读全文
posted @ 2022-01-18 22:47 灰幕 阅读(36) 评论(0) 推荐(0)
摘要: Dao包BookDao类 public interface BookDao { void insertBook(Book book); int findAllBookNumber(); List<Book> findAllBookRecords(int startIndex,int pageSize 阅读全文
posted @ 2022-01-17 21:25 灰幕 阅读(21) 评论(0) 推荐(0)
摘要: 在线图书网站练习 commons包cart类 public class Cart { private HashMap<String, CartItem> items = new HashMap<String, CartItem>(); private int totalQuantity; priva 阅读全文
posted @ 2022-01-16 19:41 灰幕 阅读(26) 评论(0) 推荐(0)
摘要: 今天根据模板进行了html代码练习。 1 css /* CSS Document */ @CHARSET "UTF-8"; body ,html{ margin-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; he 阅读全文
posted @ 2022-01-15 17:57 灰幕 阅读(54) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 13 14 15 下一页