EBS请求通过一段SQL输出EXCEL文件

一.设计初衷

1.EBS请求输出excel文件常用的有3种模式:

1.1.RTF模板+XML数据源
1.2 package输出html格式
1.3 package输出excel对应的xml文本

2.上面三种模式开发起来都比较麻烦,而且输出的是xls的文件,如果导出的数据很多,文件特别大。

3.所以想法是请求根据一段sql,动态解析出字段名称,作为excel的标题,然后数据库拼接xml文本,转成blob对象,存储到fnd_lobs表。这样通过ebs标准api就能在请求里面下载blob对应的excel文件。

二.设计思路

参考网上的程序包CUX_XLSX_MAKER_PKG,传入一段SQL后,产生一个EXCEL文件,转成blob对象后,存储到数据库服务器指定目录。由于请求输出访问的应用服务器,没法直接读取数据库服务器的文件。所以考虑直接把转成的blob对象存储到FND_LOBS表,然后通过标准API(fnd_gfm.construct_download_URL)得到文件下载url,然后在form查看数据时通过 fnd_utilities.open_url下载excel文件。

三.部署步骤

1.执行下面的SQL创建请求和文件对应关系表

-- Create table
create table CUX.CUX_REQUEST_FILE_MAPPING
(id               NUMBER,request_id       NUMBER,file_id          NUMBER,creation_date    DATE,created_by       NUMBER,last_update_date DATE,last_updated_by  NUMBER
);
-- Add comments to the table 
comment on table CUX.CUX_REQUEST_FILE_MAPPINGis '请求和文件对应关系表';
-- Add comments to the columns 
comment on column CUX.CUX_REQUEST_FILE_MAPPING.idis '主键ID';
comment on column CUX.CUX_REQUEST_FILE_MAPPING.request_idis '请求ID';
comment on column CUX.CUX_REQUEST_FILE_MAPPING.file_idis '文件ID';
-- Create/Recreate indexes 
create index CUX.CUX_REQUEST_FILE_MAPPING_N1 on CUX.CUX_REQUEST_FILE_MAPPING (REQUEST_ID);
create index CUX.CUX_REQUEST_FILE_MAPPING_N2 on CUX.CUX_REQUEST_FILE_MAPPING (FILE_ID);
create unique index CUX.CUX_REQUEST_FILE_MAPPING_U1 on CUX.CUX_REQUEST_FILE_MAPPING (ID);
CREATE OR REPLACE SYNONYM CUX_REQUEST_FILE_MAPPING FOR CUX.CUX_REQUEST_FILE_MAPPING;-- Create sequence 
create sequence CUX.CUX_REQUEST_FILE_MAPPING_S
minvalue 1
start with 1
increment by 1;CREATE OR REPLACE SYNONYM CUX_REQUEST_FILE_MAPPING_S FOR CUX.CUX_REQUEST_FILE_MAPPING_S;

2.创建CUX_XLSX_MAKER_PKG包

create or replace package CUX_XLSX_MAKER_PKG is/******************************************************************************NAME:       CUX_XLSX_MAKER_PKGPURPOSE:    XLSX 生成 Pkg,主要是从Oracle数据库端生成Xlsx二进制的文件。REVISIONS:Ver        Date        Author           Description---------  ----------  ---------------  ------------------------------------1.0        2011/2/19   Anton Scheffer   1,New Create the pkg1.1        2015/6/10     Sam.T          1.优化核心处理生成xlsx的代码,使得生成文档的执行效率大大提高!1.1        2015/6/10     Sam.T          1.query2sheet增加绑定变量的可选输入参数。1.2        2015/6/15     Sam.T          1.代码增加调试模式。直接设置G_DEBUG_MODE变量即可。1.2        2015/6/20     Sam.T          1.为方便使用,再次封装一些简单易用的过程,生成xlsx文档1.2        2015/7/5     Sam.T          1.单条SQL生成xlsx文档的内容,增加是否显示foot,以及显示的行数。******************************************************************************/---------/****************************************************************************************************************************Copyright (C) 2011, 2012 by Anton SchefferPermission is hereby granted, free of charge, to any person obtaining a copyof this software and associated documentation files (the "Software"), to dealin the Software without restriction, including without limitation the rightsto use, copy, modify, merge, publish, distribute, sublicense, and/or sellcopies of the Software, and to permit persons to whom the Software isfurnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included inall copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS ORIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THEAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHERLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS INTHE SOFTWARE.************************************************************************************************************************** */G_DEBUG_MODE boolean := FALSE;---DBMS_OUTPUT直接输出/FILE_OUTPUT文档输出/REQUEST_OUTPUT请求日志输出/CONTEXT_OUTPUT 将日志改为上下文输出G_DEBUG_TYPE VARCHAR2(240) := 'DBMS_OUTPUT';---绑定变量用的临时表变量TYPE REC_COL_VALUE IS RECORD(COL_ID    NUMBER(3),COL_VALUE VARCHAR2(2400));TYPE TAB_COL_VALUE IS table of REC_COL_VALUE index by binary_integer;TYPE TAB_COL_WIDTHS IS table of NUMBER index by binary_integer;--type tp_alignment is record(vertical   varchar2(11),horizontal varchar2(16),wrapText   boolean);--procedure clear_workbook;--procedure new_sheet(p_sheetname varchar2 := null);--function OraFmt2Excel(p_format varchar2 := null) return varchar2;--function get_numFmt(p_format varchar2 := null) return pls_integer;--function get_font(p_name      varchar2,p_family    pls_integer := 2,p_fontsize  number := 11,p_theme     pls_integer := 1,p_underline boolean := false,p_italic    boolean := false,p_bold      boolean := false,p_rgb       varchar2 := null -- this is a hex ALPHA Red Green Blue value) return pls_integer;--function get_fill(p_patternType varchar2,p_fgRGB       varchar2 := null -- this is a hex ALPHA Red Green Blue value) return pls_integer;--function get_border(p_top    varchar2 := 'thin',p_bottom varchar2 := 'thin',p_left   varchar2 := 'thin',p_right  varchar2 := 'thin')/*nonethinmediumdasheddottedthickdoublehairmediumDasheddashDotmediumDashDotdashDotDotmediumDashDotDotslantDashDot*/return pls_integer;--function get_alignment(p_vertical   varchar2 := null,p_horizontal varchar2 := null,p_wrapText   boolean := null)/* horizontalcentercenterContinuousdistributedfillgeneraljustifyleftright*//* verticalbottomcenterdistributedjustifytop*/return tp_alignment;--procedure cell(p_col       pls_integer,p_row       pls_integer,p_value     number,p_numFmtId  pls_integer := null,p_fontId    pls_integer := null,p_fillId    pls_integer := null,p_borderId  pls_integer := null,p_alignment tp_alignment := null,p_sheet     pls_integer := null);--procedure cell(p_col       pls_integer,p_row       pls_integer,p_value     varchar2,p_numFmtId  pls_integer := null,p_fontId    pls_integer := null,p_fillId    pls_integer := null,p_borderId  pls_integer := null,p_alignment tp_alignment := null,p_sheet     pls_integer := null);--procedure cell(p_col       pls_integer,p_row       pls_integer,p_value     date,p_numFmtId  pls_integer := null,p_fontId    pls_integer := null,p_fillId    pls_integer := null,p_borderId  pls_integer := null,p_alignment tp_alignment := null,p_sheet     pls_integer := null);--procedure hyperlink(p_col   pls_integer,p_row   pls_integer,p_url   varchar2,p_value varchar2 := null,p_sheet pls_integer := null);--procedure comment(p_col    pls_integer,p_row    pls_integer,p_text   varchar2,p_author varchar2 := null,p_width  pls_integer := 150 -- pixels,p_height pls_integer := 100 -- pixels,p_sheet  pls_integer := null);--procedure mergecells(p_tl_col pls_integer -- top left,p_tl_row pls_integer,p_br_col pls_integer -- bottom right,p_br_row pls_integer,p_sheet  pls_integer := null);--procedure list_validation(p_sqref_col   pls_integer,p_sqref_row   pls_integer,p_tl_col      pls_integer -- top left,p_tl_row      pls_integer,p_br_col      pls_integer -- bottom right,p_br_row      pls_integer,p_style       varchar2 := 'stop' -- stop, warning, information,p_title       varchar2 := null,p_prompt      varchar := null,p_show_error  boolean := false,p_error_title varchar2 := null,p_error_txt   varchar2 := null,p_sheet       pls_integer := null);--procedure list_validation(p_sqref_col    pls_integer,p_sqref_row    pls_integer,p_defined_name varchar2,p_style        varchar2 := 'stop' -- stop, warning, information,p_title        varchar2 := null,p_prompt       varchar := null,p_show_error   boolean := false,p_error_title  varchar2 := null,p_error_txt    varchar2 := null,p_sheet        pls_integer := null);--procedure defined_name(p_tl_col     pls_integer -- top left,p_tl_row     pls_integer,p_br_col     pls_integer -- bottom right,p_br_row     pls_integer,p_name       varchar2,p_sheet      pls_integer := null,p_localsheet pls_integer := null);--procedure set_column_width(p_col   pls_integer,p_width number,p_sheet pls_integer := null);--procedure set_column(p_col       pls_integer,p_numFmtId  pls_integer := null,p_fontId    pls_integer := null,p_fillId    pls_integer := null,p_borderId  pls_integer := null,p_alignment tp_alignment := null,p_sheet     pls_integer := null);--procedure set_row(p_row       pls_integer,p_numFmtId  pls_integer := null,p_fontId    pls_integer := null,p_fillId    pls_integer := null,p_borderId  pls_integer := null,p_alignment tp_alignment := null,p_sheet     pls_integer := null);--procedure freeze_rows(p_nr_rows pls_integer := 1,p_sheet   pls_integer := null);--procedure freeze_cols(p_nr_cols pls_integer := 1,p_sheet   pls_integer := null);--procedure freeze_pane(p_col   pls_integer,p_row   pls_integer,p_sheet pls_integer := null);--procedure set_autofilter(p_column_start pls_integer := null,p_column_end   pls_integer := null,p_row_start    pls_integer := null,p_row_end      pls_integer := null,p_sheet        pls_integer := null);--function finish return blob;--procedure save(p_blob blob, p_directory varchar2, p_filename varchar2);-----当p_footer设定参数为真,这个g_query2sheet_footer有值,则会显示这个值的内容。没有则默认是Generated xxxx---有一点说明的是,&ROWS 字段会被自动替换为结果返回的行数。g_query2sheet_footer varchar2(1000);g_query2sheet_rows   number; --结果返回的是多少行记录--这个是这个程序的"完全体"procedure query2sheet(p_sql            varchar2,p_col_value_tab  CUX_XLSX_MAKER_PKG.TAB_COL_VALUE ---运行的动态SQL的绑定变量,p_column_headers boolean := true,p_directory      varchar2 := null,p_filename       varchar2 := null,p_sheet          pls_integer := null,p_footer         boolean := true,x_retcode        OUT NUMBER ---0:成功  非0:失败( 或者:0:成功  1:警告   2:错误  ----注意:确定警告的时候要做什么动作),x_errbuf         OUT VARCHAR2 ---具体的错误信息,p_file_name      varchar2,X_FILE_ID        OUT NUMBER);---默认用上绑定变量的逻辑!procedure query2sheet(p_sql            varchar2,p_column_headers boolean := true,p_directory      varchar2 := null,p_filename       varchar2 := null,p_sheet          pls_integer := null,p_footer         boolean := true,x_retcode        OUT NUMBER ---0:成功  非0:失败( 或者:0:成功  1:警告   2:错误  ----注意:确定警告的时候要做什么动作),x_errbuf         OUT VARCHAR2 ---具体的错误信息,p_file_name      varchar2,X_FILE_ID        OUT NUMBER);---最简单的使用版本procedure query2sheet(p_sql            varchar2,p_column_headers boolean := true,p_directory      varchar2 := null,p_filename       varchar2 := null,p_sheet          pls_integer := null,p_footer         boolean := true,p_file_name      varchar2,P_COLUMN_WIDTHS  IN TAB_COL_WIDTHS,X_FILE_ID        OUT NUMBER);---参考老外的,另外封装的一个好用的过程!游标直接输出excel。未测试过~procedure cursor2sheet(p_sql            in sys_refcursor,p_column_headers boolean := true,p_directory      varchar2 := null,p_filename       varchar2 := null,p_sheet          pls_integer := null,p_footer         boolean := true);--
end;
/
create or replace package body CUX_XLSX_MAKER_PKG is--c_LOCAL_FILE_HEADER        constant raw(4) := hextoraw('504B0304'); -- Local file header signaturec_END_OF_CENTRAL_DIRECTORY constant raw(4) := hextoraw('504B0506'); -- End of central directory signature--type tp_XF_fmt is record(numFmtId  pls_integer,fontId    pls_integer,fillId    pls_integer,borderId  pls_integer,alignment tp_alignment);type tp_col_fmts is table of tp_XF_fmt index by pls_integer;type tp_row_fmts is table of tp_XF_fmt index by pls_integer;type tp_widths is table of number index by pls_integer;type tp_cell is record(value number,style varchar2(50));type tp_cells is table of tp_cell index by pls_integer;type tp_rows is table of tp_cells index by pls_integer;type tp_autofilter is record(column_start pls_integer,column_end   pls_integer,row_start    pls_integer,row_end      pls_integer);type tp_autofilters is table of tp_autofilter index by pls_integer;type tp_hyperlink is record(cell varchar2(10),url  varchar2(1000));type tp_hyperlinks is table of tp_hyperlink index by pls_integer;subtype tp_author is varchar2(32767 char);type tp_authors is table of pls_integer index by tp_author;authors tp_authors;type tp_comment is record(text   varchar2(32767 char),author tp_author,row    pls_integer,column pls_integer,width  pls_integer,height pls_integer);type tp_comments is table of tp_comment index by pls_integer;type tp_mergecells is table of varchar2(21) index by pls_integer;type tp_validation is record(type             varchar2(10),errorstyle       varchar2(32),showinputmessage boolean,prompt           varchar2(32767 char),title            varchar2(32767 char),error_title      varchar2(32767 char),error_txt        varchar2(32767 char),showerrormessage boolean,formula1         varchar2(32767 char),formula2         varchar2(32767 char),allowBlank       boolean,sqref            varchar2(32767 char));type tp_validations is table of tp_validation index by pls_integer;type tp_sheet is record(rows        tp_rows,widths      tp_widths,name        varchar2(100),freeze_rows pls_integer,freeze_cols pls_integer,autofilters tp_autofilters,hyperlinks  tp_hyperlinks,col_fmts    tp_col_fmts,row_fmts    tp_row_fmts,comments    tp_comments,mergecells  tp_mergecells,validations tp_validations);type tp_sheets is table of tp_sheet index by pls_integer;type tp_numFmt is record(numFmtId   pls_integer,formatCode varchar2(100));type tp_numFmts is table of tp_numFmt index by pls_integer;type tp_fill is record(patternType varchar2(30),fgRGB       varchar2(8));type tp_fills is table of tp_fill index by pls_integer;type tp_cellXfs is table of tp_xf_fmt index by pls_integer;type tp_font is record(name      varchar2(100),family    pls_integer,fontsize  number,theme     pls_integer,RGB       varchar2(8),underline boolean,italic    boolean,bold      boolean);type tp_fonts is table of tp_font index by pls_integer;type tp_border is record(top    varchar2(17),bottom varchar2(17),left   varchar2(17),right  varchar2(17));type tp_borders is table of tp_border index by pls_integer;type tp_numFmtIndexes is table of pls_integer index by pls_integer;type tp_strings is table of pls_integer index by varchar2(32767 char);type tp_str_ind is table of varchar2(32767 char) index by pls_integer;type tp_defined_name is record(name  varchar2(32767 char),ref   varchar2(32767 char),sheet pls_integer);type tp_defined_names is table of tp_defined_name index by pls_integer;type tp_book is record(sheets        tp_sheets,strings       tp_strings,str_ind       tp_str_ind,str_cnt       pls_integer := 0,fonts         tp_fonts,fills         tp_fills,borders       tp_borders,numFmts       tp_numFmts,cellXfs       tp_cellXfs,numFmtIndexes tp_numFmtIndexes,defined_names tp_defined_names);workbook tp_book;lc_rows  tp_rows; --new 2015.5.27G_COLUMN_WIDTHS   TAB_COL_WIDTHS;--PROCEDURE DEBUGLOG(P_MSG IN VARCHAR2) ISBEGINIF G_DEBUG_TYPE = 'DBMS_OUTPUT' THENDBMS_OUTPUT.PUT_LINE(P_MSG);ELSIF G_DEBUG_TYPE = 'FILE_OUTPUT' THEN--XYG_FND_FILE.PUT_LINE(FND_FILE.OUTPUT, P_MSG);NULL;ELSIF G_DEBUG_TYPE = 'REQUEST_OUTPUT' THEN--LOG(P_MSG);--FND_FILE.PUT_LINE (FND_FILE.LOG, P_MSG);NULL;END IF;END DEBUGLOG;procedure blob2file(p_blob      blob,p_directory varchar2 := 'MY_DIR',p_filename  varchar2 := 'my.xlsx') ist_fh  utl_file.file_type;t_len pls_integer := 32767;begint_fh := utl_file.fopen(p_directory, p_filename, 'wb');for i in 0 .. trunc((dbms_lob.getlength(p_blob) - 1) / t_len) looputl_file.put_raw(t_fh, dbms_lob.substr(p_blob, t_len, i * t_len + 1));end loop;utl_file.fclose(t_fh);end;--function raw2num(p_raw raw, p_len integer, p_pos integer) return number isbeginreturn utl_raw.cast_to_binary_integer(utl_raw.substr(p_raw,p_pos,p_len),utl_raw.little_endian);end;--function little_endian(p_big number, p_bytes pls_integer := 4) return raw isbeginreturn utl_raw.substr(utl_raw.cast_from_binary_integer(p_big,utl_raw.little_endian),1,p_bytes);end;--function blob2num(p_blob blob, p_len integer, p_pos integer) return number isbeginreturn utl_raw.cast_to_binary_integer(dbms_lob.substr(p_blob,p_len,p_pos),utl_raw.little_endian);end;--procedure add1file(p_zipped_blob in out blob,p_name        varchar2,p_content     blob) ist_now        date;t_blob       blob;t_len        integer;t_clen       integer;t_crc32      raw(4) := hextoraw('00000000');t_compressed boolean := false;t_name       raw(32767);begint_now := sysdate;t_len := nvl(dbms_lob.getlength(p_content), 0);if t_len > 0 thent_blob       := utl_compress.lz_compress(p_content);t_clen       := dbms_lob.getlength(t_blob) - 18;t_compressed := t_clen < t_len;t_crc32      := dbms_lob.substr(t_blob, 4, t_clen + 11);end if;if not t_compressed thent_clen := t_len;t_blob := p_content;end if;if p_zipped_blob is null thendbms_lob.createtemporary(p_zipped_blob, true);end if;t_name := utl_i18n.string_to_raw(p_name, 'AL32UTF8');dbms_lob.append(p_zipped_blob,utl_raw.concat(c_LOCAL_FILE_HEADER -- Local file header signature,hextoraw('1400') -- version 2.0,case whent_name =utl_i18n.string_to_raw(p_name, 'US8PC437') thenhextoraw('0000') -- no General purpose bitselse hextoraw('0008') -- set Language encoding flag (EFS)end,case when t_compressed thenhextoraw('0800') -- deflateelse hextoraw('0000') -- storedend,little_endian(to_number(to_char(t_now,'ss')) / 2 +to_number(to_char(t_now,'mi')) * 32 +to_number(to_char(t_now,'hh24')) * 2048,2) -- File last modification time,little_endian(to_number(to_char(t_now,'dd')) +to_number(to_char(t_now,'mm')) * 32 +(to_number(to_char(t_now,'yyyy')) - 1980) * 512,2) -- File last modification date,t_crc32 -- CRC-32,little_endian(t_clen) -- compressed size,little_endian(t_len) -- uncompressed size,little_endian(utl_raw.length(t_name), 2) -- File name length,hextoraw('0000') -- Extra field length,t_name -- File name));if t_compressed thendbms_lob.copy(p_zipped_blob,t_blob,t_clen,dbms_lob.getlength(p_zipped_blob) + 1,11); -- compressed contentelsif t_clen > 0 thendbms_lob.copy(p_zipped_blob,t_blob,t_clen,dbms_lob.getlength(p_zipped_blob) + 1,1); --  contentend if;if dbms_lob.istemporary(t_blob) = 1 thendbms_lob.freetemporary(t_blob);end if;end;--procedure finish_zip(p_zipped_blob in out blob) ist_cnt             pls_integer := 0;t_offs            integer;t_offs_dir_header integer;t_offs_end_header integer;t_comment         raw(32767) := utl_raw.cast_to_raw('Implementation by Anton Scheffer');begint_offs_dir_header := dbms_lob.getlength(p_zipped_blob);t_offs            := 1;while dbms_lob.substr(p_zipped_blob,utl_raw.length(c_LOCAL_FILE_HEADER),t_offs) = c_LOCAL_FILE_HEADER loopt_cnt := t_cnt + 1;dbms_lob.append(p_zipped_blob,utl_raw.concat(hextoraw('504B0102') -- Central directory file header signature,hextoraw('1400') -- version 2.0,dbms_lob.substr(p_zipped_blob,26,t_offs + 4),hextoraw('0000') -- File comment length,hextoraw('0000') -- Disk number where file starts,hextoraw('0000') -- Internal file attributes =>--     0000 binary file--     0100 (ascii)text file,case when dbms_lob.substr(p_zipped_blob,1,t_offs + 30 +blob2num(p_zipped_blob,2,t_offs + 26) - 1) in(hextoraw('2F') -- /,hextoraw('5C') -- \) then hextoraw('10000000') -- a directory/folderelse hextoraw('2000B681') -- a fileend -- External file attributes,little_endian(t_offs - 1) -- Relative offset of local file header,dbms_lob.substr(p_zipped_blob,blob2num(p_zipped_blob,2,t_offs + 26),t_offs + 30) -- File name));t_offs := t_offs + 30 + blob2num(p_zipped_blob, 4, t_offs + 18) -- compressed size+ blob2num(p_zipped_blob, 2, t_offs + 26) -- File name length+ blob2num(p_zipped_blob, 2, t_offs + 28); -- Extra field lengthend loop;t_offs_end_header := dbms_lob.getlength(p_zipped_blob);dbms_lob.append(p_zipped_blob,utl_raw.concat(c_END_OF_CENTRAL_DIRECTORY -- End of central directory signature,hextoraw('0000') -- Number of this disk,hextoraw('0000') -- Disk where central directory starts,little_endian(t_cnt, 2) -- Number of central directory records on this disk,little_endian(t_cnt, 2) -- Total number of central directory records,little_endian(t_offs_end_header -t_offs_dir_header) -- Size of central directory,little_endian(t_offs_dir_header) -- Offset of start of central directory, relative to start of archive,little_endian(nvl(utl_raw.length(t_comment),0),2) 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/pingmian/37453.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

[数据集][目标检测]睡岗检测数据集VOC+YOLO格式3290张4类别

数据集格式&#xff1a;Pascal VOC格式YOLO格式(不包含分割路径的txt文件&#xff0c;仅仅包含jpg图片以及对应的VOC格式xml文件和yolo格式txt文件) 图片数量(jpg文件个数)&#xff1a;3316 标注数量(xml文件个数)&#xff1a;3316 标注数量(txt文件个数)&#xff1a;3316 标注…

模拟散列表

模拟散列表 维护一个集合&#xff0c;支持如下几种操作&#xff1a; I x&#xff0c;插入一个整数 x&#xff1b;Q x&#xff0c;询问整数 x是否在集合中出现过&#xff1b; 现在要进行 N次操作&#xff0c;对于每个询问操作输出对应的结果。 输入格式 第一行包含整数 N&…

stm32-hal库(5)--usart串口通信三种模式(主从通信)(关于通信失败和串口不断发送数据问题的解决)

问题&#xff1a; 最近发现&#xff0c;stm32cubemx最新版本f1系列的hal库&#xff08;1.85版本&#xff09;生成的hal库&#xff0c;其中stm32f1xx_hal_uart.c的库文件中&#xff0c;其串口发送接收存在一些问题&#xff1a; 1.没有使用 __HAL_LOCK 和 __HAL_UNLOCK 宏&…

开源大模型RAG企业本地知识库问答机器人-ChatWiki

ChatWiki ChatWiki是一款开源的知识库 AI 问答系统。系统基于大语言模型&#xff08;LLM &#xff09;和检索增强生成&#xff08;RAG&#xff09;技术构建&#xff0c;提供开箱即用的数据处理、模型调用等能力&#xff0c;可以帮助企业快速搭建自己的知识库 AI 问答系统。 开…

vue使用glide.js实现轮播图(可直接复制使用)

效果图 可以实现自动轮播&#xff0c;3种切换方式&#xff1a;直接滑动图片、点击两侧按钮、点击底部按钮 体验链接:http://website.livequeen.top 实现 一、引入依赖 1、控制台引入依赖 npm install glidejs/glide 2、在css中引用 <style scoped> import glidejs/g…

.net 项目中配置 Swagger

一、前言 二、Swagger 三、.net 项目中添加Swagger 1、准备工作 &#xff08;1&#xff09;.net项目 &#xff08;2&#xff09;SwaggerController &#xff08;3&#xff09;XML文档注释 2、安装Swagger包 3、 添加配置swagger中间件 &#xff08;1&#xff09;添加S…

uniapp, ‍[⁠TypeError⁠]‍ “Failed to fetch dynamically imported module“ 报错解决思路

文章目录 1. 背景2. 报错3. 解决思路4. 思考参考1. 背景 最近基于uniapp开发一款设备参数调试的APP软件,在使用第三方插件的过程中,出现下面的报错。 2. 报错 [plugin:vite:import-analysis] Cannot find module ‘D:/leaning/uniapp/demo/jk-uts-udp示例/uni_modules/uts-…

对于CDA一级考试该咋准备??!

一、了解考试内容和结构 CDA一级考试主要涉及的内容包括&#xff1a;数据分析概述与职业操守、数据结构、数据库基础与数据模型、数据可视化分析与报表制作、Power BI应用、业务数据分析与报告编写等。 CDA Level Ⅰ 认证考试大纲:https://edu.cda.cn/group/4/thread/174335 …

怎么用JavaScript写爬虫

随着互联网技术的不断发展&#xff0c;爬虫&#xff08;web crawler&#xff09;已经成为当前最热门的爬取信息方式之一。通过爬虫技术&#xff0c;我们可以轻松地获取互联网上的数据&#xff0c;并用于数据分析、挖掘、建模等多个领域。而javascript语言则因其强大的前端开发工…

C++精解【9】

文章目录 大整数GMP概述GMP安装 [cygwin](https://cygwin.com/install.html)安装 gmpexample Eigen基本属性和运算 大整数GMP 概述 GMP GMP是一个用于任意精度算术的免费库&#xff0c;可对有符号整数、有理数和浮点数进行操作。除了运行GMP的机器的可用内存所暗示的精度外&…

expandtabs()方法——tab符号转为空格

自学python如何成为大佬(目录):https://blog.csdn.net/weixin_67859959/article/details/139049996?spm1001.2014.3001.5501 语法参考 expandtabs()方法把字符串中的tab&#xff08;\t&#xff09;符号转为空格&#xff0c;tab&#xff08;\t&#xff09;符号默认的空格数是…

简单科普-GPT到底是什么?

1.ChatGPT ChatGPT&#xff08;全名&#xff1a;Chat Generative Pre-trained Transformer&#xff09;&#xff0c;是OpenAI研发的一款聊天机器人程序 &#xff0c;于2022年11月30日发布 。ChatGPT是人工智能技术驱动的自然语言处理工具&#xff0c;它能够基于在预训练阶段所见…

MATLAB2024a下的神经网络聚类工具箱聚类

1 打开神经网络聚类工具箱GUI界面 图1-1 2 导入训练数据 图2-1 导入训练集如图2-2&#xff0c;图2-3、图2-4所示 图2-2 图2-3 图2-4 如图2-4&#xff0c;确认无误点击确定 3 模型训练 如图3-1&#xff0c;调整验证集与测试集比例及映射大小后点击”训练“&#xff0c;开始训练…

Oracle、MySQL、PostgreSQL对比

在对比 Oracle、MySQL 和 PostgreSQL 关于 range/list 分区键更新操作时&#xff0c; Oracle: 默认情况下不允许对分区键进行更新操作&#xff0c;否则会报错 ORA-14402: updating partition key column would cause partition to change 。可以通过设置 ALTER TABLE table_nam…

uview文本框组件计数count报错u--textarea

报错内容&#xff1a; [Vue warn]: Error in render: “TypeError: Cannot read property ‘length’ of null” found in —> at uni_modules/uview-ui/components/u-textarea/u-textarea.vue at uni_modules/uview-ui/components/u–textarea/u–textarea.vue mp.runtime.…

如何理解泛型的编译期检查

既然说类型变量会在编译的时候擦除掉&#xff0c;那为什么我们往 ArrayList 创建的对象中添加整数会报错呢&#xff1f;不是说泛型变量String会在编译的时候变为Object类型吗&#xff1f;为什么不能存别的类型呢&#xff1f;既然类型擦除了&#xff0c;如何保证我们只能使用泛型…

浪潮信息AIStation与毕昇:让AI大模型开发变得更易用

在数字化浪潮的推动下&#xff0c;人工智能&#xff08;AI&#xff09;技术正以前所未有的速度改变着世界。近日&#xff0c;毕昇大模型应用开发平台和浪潮信息AIStation智能业务生产创新平台完成兼容性互认证。二者的融合&#xff0c;不仅简化了大模型定制开发的流程&#xff…

python--列表list切分(超详细)

在Python中&#xff0c;列表&#xff08;list&#xff09;的切分&#xff08;slicing&#xff09;是一种非常有用的操作&#xff0c;它允许你获取列表的一部分而不是整个列表。切分的基本语法如下&#xff1a; list[start:stop:step] start&#xff1a;切分的起始索引&#x…

【进阶篇-Day6:JAVA中Arrays工具类、排序算法、正则表达式的介绍】

目录 1、Arrays工具类2、排序算法2.1 冒泡排序2.2 选择排序2.3 二分查找&#xff08;折半查找&#xff09;&#xff08;1&#xff09;概念&#xff1a;&#xff08;2&#xff09;步骤&#xff1a; 3、正则表达式3.1 正则表达式的概念&#xff1a;3.2 正则表达式的格式&#xff…

Unidbg调用-补环境V3-Hook

结合IDA和unidbg,可以在so的执行过程进行Hook,这样可以让我们了解并分析具体的执行步骤。 应用场景:基于unidbg调试执行步骤 或 还原算法(以Hookzz为例)。 1.大姨妈 1.1 0x1DA0 public void hook1() {