




已阅读5页,还剩21页未读, 继续免费阅读
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
SELECT 菜品 SUM 数量 数量 SUM 总价 总价 MIN 显示循序 显示循序 FROM 表 GROUP BY 菜品 HAVING COUNT 菜品 1 ORDER BY 2 DESC 表如下 菜品 数量 总价 显示循序 香仁饼干 2 12 0001 奶油 1 6 法式起点 1 5 滴滤咖啡 3 18 0002 香仁饼干 3 18 0003 奶油 2 12 法式起点 1 5 整理效果 菜品 数量 总价 显示循序 香仁饼干 5 30 0001 奶油 3 18 法式起点 2 10 实例 134 用 JavaReport 的 RsTable 对象输出报表 本例将沿用第 7 章中在 SQL Server 数据库 testDataBase 中创建的表 userTable 实现输出用 户资料报表 这个报表可导出成 PDF EXCEL 等格式 并在页面首部的工具栏中加入的排序 的超链接 可根据需要来对报表中的数据进行排序 其实质上改变 SQL 语句中的 order by 子句 中的排序字段来实现的 源代码如下 RsTable jsp 建立报表 返回报表的实例 public Report createReport HttpServletRequest request throws Exception Report report new Report 实例化报表对象 RsTable rst getRsTable request 创建表格对象 设置页眉和页角的显示内容 report addHeaderText 记录集表格程序示例 report addHeaderSeparator 1 report addFooterSeparator 1 report addFooterText 第 P 页 共 N 页 设置报表中间显示的内容 report addText 系统用户资料表 report addBreak report addBreak report addTable rst 把录集表格对象添加到报表容器中 report addBreak return report 生成 ResultSet 表格 同时设置对象的相关属性 public RsTable getRsTable HttpServletRequest request throws Exception ResultSet rs getResultSet request 查询得到记录集 这是实时动态数据的来源 RsTable rsTable new RsTable rs 实例化记录集表格对象 设置表格显示列名时的映射关系 即显示成为中文的名称 String map new String user id 用户编号 user name 用户名 user true name 用户真实姓名 user age 用户年龄 user sex 用户性别 user address 用户地址 rsTable setMapping map 置表格的样式 行和列的边线都显示出来 表头的列名显示成灰色 对齐方式为中间对齐 列宽 度自动调整 rsTable setRowBorder RsTable LINE THIN rsTable setColBorder RsTable LINE THIN rsTable setRowBackground 0 Color LIGHT GRAY rsTable setAlignment Table H CENTER Table V CENTER rsTable setColAutoSize true return rsTable 查询得到一个 ResultSet 对象 这里访问的是一个 SQL Server 数据库 public ResultSet getResultSet HttpServletRequest request throws Exception String orderByCol Tools getParameter request orderby user id String strurl jdbc microsoft sqlserver localhost 1433 DatabaseName testDatabase Class forName com microsoft jdbc sqlserver SQLServerDriver Connection conn DriverManager getConnection strurl sa Statement stmt conn createStatement ResultSet rs stmt executeQuery select user id user name user true name user age user sex user address from userTable order by orderByCol return rs 这是工具栏中的显示返回按钮的脚本代码 public String getToolbarScript HttpServletRequest request String uri request getRequestURI return 排序方式 编号 用户名 性别 用户年龄 程序的运行结果如图 17 16 所示 实例 134 用 JavaReport 的 RsTable 对象输出报表 本例将沿用第 7 章中在 SQL Server 数据库 testDataBase 中创建的表 userTable 实现输出用户资料报表 这个报表可导出成 PDF EXCEL 等格式 并在页面首部的工具栏中加入的排序的超链接 可根据需要来对报表中的数据 进行排序 其实质上改变 SQL 语句中的 order by 子句中的排序字段来实现的 源代码如下 RsTable jsp 建立报表 返回报表的实例 public Report createReport HttpServletRequest request throws Exception Report report new Report 实例化报表对象 RsTable rst getRsTable request 创建表格对象 设置页眉和页角的显示内容 report addHeaderText 记录集表格程序示例 report addHeaderSeparator 1 report addFooterSeparator 1 report addFooterText 第 P 页 共 N 页 设置报表中间显示的内容 report addText 系统用户资料表 report addBreak report addBreak report addTable rst 把录集表格对象添加到报表容器 中 report addBreak return report 生成 ResultSet 表格 同时设置对象的相关属性 public RsTable getRsTable HttpServletRequest request throws Exception ResultSet rs getResultSet request 查询得到记录集 这是实时动 态数据的来源 RsTable rsTable new RsTable rs 实例化记录集表格对象 设置表格显示列名时的映射关系 即显示成为中文的名称 String map new String user id 用户编号 user name 用户名 user true name 用户真实姓名 user age 用户年龄 user sex 用户性别 user address 用户地址 rsTable setMapping map 置表格的样式 行和列的边线都显示出来 表头的列名显示成灰色 对齐 方式为中间对齐 列宽度自动调整 rsTable setRowBorder RsTable LINE THIN rsTable setColBorder RsTable LINE THIN rsTable setRowBackground 0 Color LIGHT GRAY rsTable setAlignment Table H CENTER Table V CENTER rsTable setColAutoSize true return rsTable 查询得到一个 ResultSet 对象 这里访问的是一个 SQL Server 数据库 public ResultSet getResultSet HttpServletRequest request throws Exception String orderByCol Tools getParameter request orderby user id String strurl jdbc microsoft sqlserver localhost 1433 DatabaseName testDa tabase Class forName com microsoft jdbc sqlserver SQLServerDriver Connection conn DriverManager getConnection strurl sa Statement stmt conn createStatement ResultSet rs stmt executeQuery select user id user name user true name user age user sex user address from userTable order by orderByCol return rs 这是工具栏中的显示返回按钮的脚本代码 public String getToolbarScript HttpServletRequest request String uri request getRequestURI return 排序方式 编号 用户名 性别 用户年龄 程序的运行结果如图 17 16 所示 select from ccmsrt001 select count dcbw from ccmsrt001 select from ccmsrt001 where distinct dcarea select sum from group by select dcregion dcoperator sum dcquitfee from ccmsrt001 group by dcregion dcoperator select dcregion dcarea dcoperator sum dcquitfee count dcbw count dcqw from ccmsrt001 group by dcregion dcarea dcoperator order by sum dcquitfee desc select dcoperator sum dcquitfee as sumquit from ccmsrt001 group by dcoperator create or replace function GetSpanTimeByNunber v second number return varchar2 is Result varchar2 3200 begin if v second 0 or v second is null then return null end if SELECT case when abs trunc v second 3600 1 then 0 else to char trunc v second 3600 end case when abs trunc mod v second 3600 60 1 then to char trunc mod mod v second 3600 60 else 0 end FlightPeriod2 INTO Result from dual return Result end GetSpanTimeByNunber 文网文文网文文网文文网文问问 create or replace procedure testaa as cursorrow t airbusapmresult rowtype maxvalue number minvalue number cursor mycursor is select from t airbusapmresult where rownum 10 begin open mycursor loop fetch mycursor into cursorrow exit when mycursor notfound dbms output put line to char cursorrow depr1 end loop close mycursor end 3 主要方法介绍 上传 新建一个 SmartUpload 对象 SmartUpload su new SmartUpload 上传初始化 su initialize pageContext 限制每个上传文件的最大长度 su setMaxFileSize 10000 限制总上传数据的长度 su setTotalMaxFileSize 20000 设定允许上传的文件 通过扩展名限制 仅允许 doc txt 文件 su setAllowedFilesList doc txt 设定禁止上传的文件 通过扩展名限制 禁止上传带有 exe bat jsp htm html 扩展名的文件和没有扩展名的文件 su setDeniedFilesList exe bat jsp htm html 上传文件 su upload 将上传文件全部保存到指定目录 int count su save upload 下载 新建一个 SmartUpload 对象 SmartUpload su new SmartUpload 初始化 su initialize pageContext 设定 contentDisposition 为 null 以禁止浏览器自动打开文件 保证点击链接后是下载文件 若不设定 则下载的文件扩展名为 doc 时 浏览器将自动用 word 打开它 扩展名为 pdf 时 浏览器将用 acrobat 打开 su setContentDisposition null 下载文件 su downloadFile upload test doc 应用实例 用户只能上传图片格式的文件实例 uploadimage jsp alert 只允许上传 jpg 和 gif 类型图片文件 window location upload htm alert 请先选择要上传的文件 window location upload htm else String myFileName myFile getFileName 取得上载的文件的文件名 ext myFile getFileExt 取得后缀名 int file size myFile getSize 取得文件的大小 String saveurl if file size file size max 更改文件名 取得当前上传时间的毫秒数值 Calendar calendar Calendar getInstance String filename String valueOf calendar getTimeInMillis saveurl application getRealPath url saveurl filename ext 保存路径 myFile saveAs saveurl SmartUpload SAVE PHYSICAL out print saveurl String ret parent HtmlEdit focus ret var range parent HtmlEdit document selection createRange ret range pasteHTML ret alert 上传成功 ret window location upload htm out print ret catch Exception e out print e toString upload htm 请选择上传的图片 如何用如何用 jsp 读取文件夹里的全部文件名及大小类型 读取文件夹里的全部文件名及大小类型 想把一个文件夹的内容全部读取出来 里面全是 word 与 pp excel 文档 然后分两行显示在页面上 名称就是链接和说明 在以后打开这个 jsp 文件时 可自动读取该文件夹的内容 文件夹里的内容可以随时增删 谢谢 jsp 文件名 showfile jsp 文件夹名称 files 文件夹里的文件的名称包括中英文 谢谢了 wobushiwo 发表于 2005 11 18 11 40 你想得还真美啊 还给设计好了 showfile jsp 还删除 访问呢 要不要给你写套 WEB 文件管理啊 哈哈 下面的代码列出来了 自己发挥吧 去参考 java io code String path 路径 File f new File path if f exists out println path not exists return File fa f listFiles for int i 0 i fa length i File fs fa i if fs isDirectory out println fs getName 目录 else out println fs getName code jiarry 发表于 2005 11 18 13 51 多谢 只是希望从源代码中分析下 学习学习而已 jiarry 发表于 2005 11 18 14 05 效果不错 正是这个意思 俺要借用你的代码了 在你的基础上来做个页面 hoho 谢谢了 jiarry 发表于 2005 11 18 14 09 如果再读取文件夹里的文件呢 怎么样穷尽递归全部文件夹下文件夹里的内容 大马虎大马虎 发表于 2005 11 18 15 26 要将服务器的所有目录显示出来呢 比如使用 windows 系统显示出 c d 就象使用 weblogic 部署文件时那样 可以选择本地的任何一个盘 wobushiwo 发表于 2005 11 18 21 15 知道递归 那说明你有底了 当 fs isDirectory 是真时 那个就是目录 那就再次调用刚上面的流程 查查 java io 包相当清楚了 jiarry 发表于 2005 11 21 10 48 多谢 wobushiwo jiarry 发表于 2005 11 22 12 35 如何才能递归得到文件全部目录如何才能递归得到文件全部目录 如何才能递归得到文件全部目录 code public String travelFile String directory 论坛求助 try File dir new File directory File files dir listFiles for int i 0 i files length i if dir isFile return dir getName else for int j 0 j files length j if files j isDirectory travelFile files j getAbsolutePath return files j getName return files j getName catch Exception e return null public static void travelFile String directory try File dir new File directory if dir isFile System out print dir getName else File files dir listFiles for int j 0 j String dir E Tomcat webapps test jspfiles dir pageContext getServletContext getRealPath WEB INF out print ddd out print travelFile dir code b 上面是一个 jsp 文件 却只能得到一个文件 无法捕捉全部文件列表 b 谢谢 jiarry 发表于 2005 11 22 14 33 哪位愿意指点呢 在下先谢过了 guangzongy 发表于 2005 11 22 15 10 quote public String travelFile String directory 论坛求助 try File dir new File directory File files dir listFiles for int i 0 i files length i if dir isFile color Red return dir getName color quote 红色部分如果碰到非目录的文件就会返回 不知道你是怎么调用的 em14 package com oracleexcel import java io File import java io IOException import java sql Connection import java sql DriverManager import java sql PreparedStatement import java sql ResultSet import java sql SQLException import jxl Cell import jxl Sheet import jxl Workbook import jxl read biff BiffException import jxl write Label import jxl write WritableSheet import jxl write WritableWorkbook import jxl write WriteException import jxl write biff RowsExceededException public class ParserExcel param args throws IOException throws BiffException private staticString s db connection string jdbc oracle thin 192 168 202 192 1521 ORA92 private static String driverClassName com mysql jdbc Driver private static String dbURL jdbc mysql localhost 3306 test autoReconnect true 设置提交地址的编码 private static String user root private static String password root public static Connection getConnection Connection con null try Class forName oracle jdbc driver OracleDriver Class forName driverClassName con DriverManager getConnection s db connection string CCMS CCMS con DriverManager getConnection dbURL user password catch ClassNotFoundException e e printStackTrace catch SQLException e e printStackTrace return con public static void exprotExcel throws SQLException BiffException IOException RowsExceededException WriteException Connection con getConnection 获得数据库连接 String sql select dcbusicategory from ccmsrw001 group by dcbusicategory ResultSet rs con prepareStatement sql executeQuery WritableWorkbook book Workbook createWorkbook new File home 111 xls 创建可以写的workbook对象 WritableWorkbook book Workbook createWorkbook new File home 1101 xls 创建可以写的workbook对象 WritableSheet sheet book createSheet 1 0 创建工作区 int i 0 while rs next String n rs getString dcbusicategory String a rs getString a String p rs getString pe System out println rs getString dcbusicategory Label l new Label 0 i rs getString dcbusicategory 设 置写入的内容 sheet addCell l i book write 写入ecxel book close 一定要关闭 否则不写入 public static void main String args throws IOException BiffException SQLException RowsExceededException WriteException exprotExcel 将个人信息导出到 Excel 表 public void grxxExportXLS HttpServletResponse response Grxx grxx PageBean p List list queryGrxxList grxx p try String targetfile getServlet getServletContext getRealPath companymanage grxxlistxls xls Method 1 创建可写入的 Excel 工作薄 jxl write WritableWorkbook wwb Workbook createWorkbook new File targetfile Method 2 将 WritableWorkbook 直接写入到输出流 OutputStream os response getOutputStream String fs 个人信息表 fs new String fs getBytes gb2312 iso8859 1 response reset 清空输出流 response setContentType application msexcel 定义输出类型 response setHeader Content disposition attachment filename fs xls 设定输出文件头 jxl write WritableWorkbook wwb Workbook createWorkbook os 创建 Excel 工作表 jxl write WritableSheet ws wwb createSheet 个人信息表 1 0 19 列 标题占据 2 行 int charTitle 10 标题字体大小 int charNormal 10 标题字体大小 添加带有字型 Formatting 的对象 用于标题 jxl write WritableFont titleFont new jxl write WritableFont WritableFont createFont 宋体 charTitle WritableFont BOLD jxl write WritableCellFormat titleFormat new jxl write WritableCellFormat titleFont titleFormat setBorder Border ALL BorderLineStyle THIN 线条 titleFormat setVerticalAlignment VerticalAlignment CENTRE 垂 直对齐 titleFormat setAlignment Alignment CENTRE 水平对齐 titleFormat setWrap true 是否换行 titleFormat setBackground Colour GRAY 25 背景色暗灰 25 用于正文 WritableFont normalFont new WritableFont WritableFont createFont 宋体 charNormal jxl write WritableCellFormat normalFormat new jxl write WritableCellFormat normalFont normalFormat setBorder Border ALL BorderLineStyle THIN 线条 normalFormat setVerticalAlignment VerticalAlignment CENTRE 垂直对齐 normalFormat setAlignment Alignment CENTRE 水平对齐 normalFormat setWrap true 是否换行 用于带有 formatting 的 Number 对象 WritableFont nf new WritableFont WritableFont createFont Times New Roman charNormal jxl write NumberFormat nf new jxl write NumberFormat jxl write WritableCellFormat wcfN new jxl write WritableCellFormat nf wcfN setBorder Border ALL BorderLineStyle THIN 线条 wcfN setVerticalAlignment VerticalAlignment CENTRE 垂直对齐 wcfN setAlignment Alignment CENTRE 水平对齐 wcfN setWrap true 是否换行 添加标题 第一行 设置列宽每个字体占 charset 个 ws mergeCells 14 0 18 0 合并单元格 ws mergeCells 10 0 13 0 合并单元格 ws mergeCells 0 0 0 1 合并单元格 序号 ws setColumnView 0 6 设置列宽 第 1 列 ws mergeCells 1 0 1 1 合并单元格 公民身份证号 ws setColumnView 1 9 设置列宽 第 2 列 ws mergeCells 2 0 2 1 合并单元格 电脑序号 ws setColumnView 2 6 设置列宽 第 3 列 ws mergeCells 3 0 3 1 合并单元格 四险姓名 ws setColumnView 3 6 设置列宽 第 4 列 ws mergeCells 4 0 4 1 合并单元格 医疗姓名 ws setColumnView 4 6 设置列宽 第 5 列 ws mergeCells 5 0 5 1 合并单元格 医疗保险手册号 ws setColumnView 5 9 设置列宽 第 6 列 ws mergeCells 6 0 6 1 合并单元格 四险缴费人员类别 ws setColumnView 6 9 设置列宽 第 7 列 ws mergeCells 7 0 7 1 合并单元格 医疗缴费人员类别 ws setColumnView 7 9 设置列宽 第 8 列 ws mergeCells 8 0 8 1 合并单元格 医疗参保人员类别 ws setColumnView 8 9 设置列宽 第 9 列 ws mergeCells 9 0 9 1 合并单元格 医疗参保状态 ws setColumnView 9 7 设置列宽 第 10 列 ws setColumnView 10 6 设置列宽 第 11 列 ws setColumnView 11 6 设置列宽 第 12 列 ws setColumnView 12 6 设置列宽 第 13 列 ws setColumnView 13 6 设置列宽 第 14 列 ws setColumnView 14 6 设置列宽 第 15 列 ws setColumnView 15 6 设置列宽 第 16 列 ws setColumnView 16 6 设置列宽 第 17 列 ws setColumnView 17 6 设置列宽 第 18 列 ws setColumnView 18 6 设置列宽 第 19 列 jxl write Label tit00 new jxl write Label 0 0 序号 titleFormat ws addCell tit00 jxl write Label tit10 new jxl write Label 1 0 公民身份证号 titleFormat ws addCell tit10 jxl write Label tit20 new jxl write Label 2 0 电脑序号 titleFormat ws addCell tit20 jxl write Label tit30 new jxl write Label 3 0 四险姓名 titleFormat ws addCell tit30 jxl write Label tit40 new jxl write Label 4 0 医疗姓名 titleFormat ws addCell tit40 jxl write Label tit50 new jxl write Label 5 0 医疗保险手册号 titleFormat ws addCell tit50 jxl write Label tit60 new jxl write Label 6 0 四险缴费人员类 别 titleFormat ws addCell tit60 jxl write Label tit70 new jxl write Label 7 0 医疗缴费人员类 别 titleFormat ws addCell tit70 jxl write Label tit80 new jxl write Label 8 0 医疗参保人员类 别 titleFormat ws addCell tit80 jxl write Label tit90 new jxl write Label 9 0 医疗参保状态 titleFormat ws addCell tit90 jxl write Label tit100 new jxl write Label 10 0 四险缴费状态 titleFormat ws addCell tit100 jxl write Label tit140 new jxl write Label 14 0 缴费基数 titleFormat ws addCell tit140 第二行 jxl write Label tit101 new jxl write Label 10 1 养老 titleFormat ws addCell tit101 jxl write Label tit111 new jxl write Label 11 1 失业 titleFormat ws addCell tit111 jxl write Label tit121 new jxl write Label 12 1 工伤 titleFormat ws addCell tit121 jxl write Label tit131 new jxl write Label 13 1 生育 titleFormat ws addCell tit131 jxl write Label tit141 new jxl write Label 14 1 养老 titleFormat ws addCell tit141 jxl write Label tit151 new jxl write Label 15 1 失业 titleFormat ws addCell tit151 jxl write Label tit161 new jxl write Label 16 1 工伤 titleFormat ws addCell tit161 jxl write Label tit171 new jxl write Label 17 1 生育 titleFormat ws addCell tit171 jxl write Label tit181 new jxl write Label 18 1 医疗 titleFormat ws addCell tit181 double yljs 0 医疗基数合计 double yxjs 0 养老基数合计 double syjs 0 失业基数合计 double sxjs 0 生育基数合计 double gsjs 0 工伤基数合计 for int i 0 i list size i Grxx xx Grxx list get i jxl write Label lab1 new jxl write Label 0 i 2 String valueOf i 1 wcfN ws addCell lab1 第 1 列 序号 jxl write Label lab2 new jxl write Label 1 i 2 xx getBzhm wcfN ws addCell lab2 第 2 列 公民身份证号 jxl write Label lab3 new jxl write Label 2 i 2 字段不存在 wcfN ws addCell lab3 第 3 列 电脑序号 jxl write Label lab4 new jxl write Label 3 i 2 xx getXm normalFormat ws addCell lab4 第 4 列 四险姓名 jxl write Label lab5 new jxl write Label 4 i 2 xx getXm normalFormat ws addCell lab5 第 5 列 医疗姓名 jxl write Label lab6 new jxl write Label 5 i 2 xx getBxh wcfN ws addCell lab6 第 6 列 医疗保险手册号 jxl write Label lab7 new jxl write Label 6 i 2 xx getBxh normalFormat ws addCell lab7 第 7 列 四险缴费人员类别 jxl write Label lab8 new jxl write Label 7 i 2 字段不存在 normalFormat ws addCell lab8 第 8 列 医疗缴费人员类别 jxl write Label lab9 new jxl write Label 8 i 2 字段不存在 normalFormat ws addCell lab9 第 9 列 医疗参保人员类别 jxl write Label lab10 new jxl write Label 9 i 2 字段不存 在 normalFormat ws addCell lab10 第 10 列 医疗参保状态 jxl write Label lab11 new jxl write Label 10 i 2 字段不存 在 normalFormat ws addCell lab11 第 11 列 养老缴费状态 jxl write Label lab12 new jxl write Label 11 i 2 字段不存 在 normalFormat ws addCell lab12 第 12 列 失业缴费状态 jxl write Label lab13 new jxl write Label 12 i 2 字段不存 在 normalFormat ws addCell lab13 第 13 列 工伤缴费状态 jxl write Label lab14 new jxl write Label 13 i 2 字段不存 在 normalFormat ws addCell lab14 第 14 列 生育缴费状态 jxl write Number lab15 new jxl write Number 14 i 2 xx getGrjs getYxjfjs doubleValue wcfN ws addCell lab15 第 15 列 养老缴费基数 yxjs xx getGrjs getYxjfjs doubleValue jxl write Number lab16 new jxl write Number 15 i 2 xx getGrjs getSyjfjs doubleValue wcfN ws addCell lab16 第 16 列 失业缴费基数 syjs xx getGrjs getSyjfjs doubleValue jxl write Number lab17 new jxl write Number 16 i 2 xx getGrjs getGsjfjs doubleValue wcfN ws addCell lab17 第 17 列 工伤缴费基数 gsjs xx
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 建筑施工劳务分包合同范本及注意点
- 出版合同阅读协议模板
- 灌溉用水计划管理办法
- 河南劳务派遣管理办法
- 检修费用分级管理办法
- 2025-2030中国食品加工离心泵清洁消毒标准与认证体系报告
- 2025-2030中国设施农业装备市场细分领域投资价值分析报告
- 吉林省长春市第一五三中学2026届八年级物理第一学期期末学业质量监测模拟试题含解析
- 校园早餐配送行业早餐配送智能化技术应用研究报告
- 氢能货运车在建筑材料运输中的节能减排与成本优化报告
- 高中数学 人教A版 必修一 《集合与常用逻辑用语》 1.2 集合间的基本关系
- 安阳简介课件
- 部编版三年级语文上册第2课《花的学校》精美课件
- 遥感大数据应用解决方案课件
- (精选word)洪恩识字-生字卡片1-200
- 斜拉桥主桥索塔施工监理实施细则
- 2022年全国数学建模竞赛D题的答案
- 劳动关系理论PPT课件.ppt
- 高速铁路供电安全检测监测系统(6C系统)总体技术规范
- 医院输血科技术人员绩效考核指标
- 酒店管理有限公司薪酬体系
评论
0/150
提交评论