在数据处理过程中,将数据库中的数据导出为Excel表格是一项非常常见的操作。利用Java可以快速、高效地将数据导出为Excel表格,大大提高了数据处理效率和准确性。

一、Java实现Excel导出的准备工作

在使用Java实现Excel导出之前,需要进行一些准备工作,包括:

1、引入POI和Excel工具包

POI和Excel工具包是用于实现Java导出Excel的重要工具,需要先引入这两个工具包。

2、连接数据库

要导出数据库的数据,需要先连接数据库,获取需要导出的数据。

3、创建Excel文件

在导出数据之前,需要先创建一个Excel文件,将需要导出的数据写入到这个文件中。

二、将数据导出为Excel表格的具体实现

1、创建Excel文件

我们需要创建一个Excel文件,以便把数据写入到其中。创建Excel文件的步骤如下:

//创建工作簿

Workbook workbook=new HSSFWorkbook();

//创建工作表

Sheet sheet =workbook.createSheet(“sheet1”);

这里我们创建了一个工作簿和一个工作表。其中工作簿是Excel的更高级别的中间对象,而工作表则是工作簿下的具体表格。

2、获取需要导出的数据,并将其写入到Excel文件中

在准备工作完成之后,我们需要从数据库中获取需要导出的数据,并将其写入到创建好的Excel文件中。具体的实现方法如下:

//获取连接

Connection con=this.getConnection();

Statement st = null;

ResultSet rs = null;

try {

    st = con.createStatement();

    rs = st.executeQuery(“select * from student”);//查询的SQL语句

    int rowNum = 1;

    // 添加excel的表头

Row headRow = sheet.createRow(0);

ResultSetMetaData rd = rs.getMetaData();

for (int i = 1; i

String columnName = rd.getColumnName(i);

Cell headCell = headRow.createCell(i-1);

headCell.setCellValue(columnName);

}

    while(rs.next()){

        Row row = sheet.createRow(rowNum);

        for(int i=0;i

            Cell cell = row.createCell(i);

            Object objVal = rs.getObject(i+1);

            if(objVal!=null){

                cell.setCellValue(objVal.toString());

            }

        }

        rowNum++;

    }

    

}catch(Exception e){

    e.printStackTrace();

} finally {

    try{

        if(st!=null) st.close();

        if(rs!=null) rs.close();

    }catch(SQLException e){

        e.printStackTrace();

    }

}

在写入数据的过程中,我们需要注意如下问题:

① 在写入数据之前,我们需要先添加Excel表格的表头,以便于查看数据的内容;

② 在从ResultSet对象中获取每列对应的列名、列类型和列值时,一定要使用ResultSetMetaData类的方法来获取,这样可以更好的获取元数据信息,更加准确地组织数据。

3、保存Excel文件

数据写入Excel文件结束后,我们需要将这个文件保存到本地,可以使用FileOutputStream实现文件的输出和保存。具体的实现方法如下:

File file = new File(“D:/student.xlsx”);

FileOutputStream fos = null;

try {

    if(!file.exists()){

        file.createNewFile();

    }

    fos=new FileOutputStream(file);

workbook.write(fos);

} catch (Exception e) {

    e.printStackTrace();

}finally {

    try {

        if (fos != null) {

            fos.close();

        }

    } catch (IOException e) {

        e.printStackTrace();

    }

}

在保存Excel文件的过程中,我们需要注意如下问题:

① 在保存Excel文件之前,需要先判断文件是否存在,如果不存在,则需要创建新的文件;

② 在保存Excel文件之前,需要使用FileOutputStream来创建文件输出流,将文件的输出流与Excel文件进行关联,最后调用workbook.write(fos)方法来写入数据。

三、

利用Java实现数据库数据导出为Excel表格是一项非常实用的技术,可以大大提高数据处理的效率和准确性。Java中提供了POI和Excel工具包可以用来快速导出Excel文件,并且通过连接数据库和使用ResultSet对象可以快速获取需要导出的数据,然后将数据写入到Excel文件中并保存到本地。

相关问题拓展阅读:

java导出excel

试试double型

java导出Excel

java 代码 /* * Generated by MyEclipse Struts * Template path: templates/java/JavaClass.vtl */ package com.axon.fable.sams.view.action; import java.io.IOException; import java.io.OutputStream; import java.util.List; import javax.serv …

java导出Excel例举方式

方法一:导出Excel数据的插件jexcelapi

程序实例如下:

public void exportClassroom(OutputStream os) throws PaikeException {

try {

WritableWorkbook wbook = Workbook.createWorkbook(os); //建立excel文件

WritableSheet wsheet = wbook.createSheet(“教室信息表”, 0); //工作表名称

//设置Excel字体

WritableFont wfont = new WritableFont(WritableFont.ARIAL, 16,

WritableFont.BOLD, false,

jxl.format.UnderlineStyle.NO_UNDERLINE,

jxl.format.Colour.BLACK);

WritableCellFormat titleFormat = new WritableCellFormat(wfont);

String title = { “教室名”, “容 量”, “类 型”, “其他说明”兆源 };

//设置锋猜渗银脊Excel表头

for (int i = 0; i </p> <p>Label excelTitle = new Label(i, 0, title<i>, titleFormat); </p> <p><p>wsheet.addCell(excelTitle); </p> <p>} </p> <p>int c = 1; //用于循环时Excel的行号 </p> <p>ClassroomService cs = new ClassroomService(); </p> <p>List list = cs.findAllClassroom(); //这个是从数据库中取得要导出的数据 </p> <p>Iterator it = list.iterator(); </p> <p>while (it.hasNext()) { </p> <p>ClassroomDTO crdto = (ClassroomDTO) it.next(); </p> <p>Label content1 = new Label(0, c, crdto.getRoomname()); </p> <p>Label content2 = new Label(1, c, crdto.getCapicity().toString()); </p> <p>Label content3 = new Label(2, c, crdto.getRoomTypeId() </p> <p>.toString()); </p> <p>Label content4 = new Label(3, c, crdto.getRemark()); </p> <p>wsheet.addCell(content1); </p> <p>wsheet.addCell(content2); </p> <p>wsheet.addCell(content3); </p> <p>wsheet.addCell(content4); </p> <p>c++; </p> <p>} </p> <p>wbook.write(); //写入文件 </p> <p>wbook.close(); </p> <p>os.close(); </p> <p>} catch (Exception e) { </p> <p>throw new PaikeException(“导出文件出错”); </p> <p>} </p> <p>} </p> <p>方法二:直接用Java代码实现导出Excel报表 </p> <p>/* </p> <p>* Generated by MyEclipse Struts </p> <p>* Template path: templates/java/JavaClass.vtl </p> <p>*/ </p> <p>package com.axon.fable.sams.view.action; </p> <p>import java.io.IOException; </p> <p>import java.io.OutputStream; </p> <p>import java.util.List; </p> <p>import javax.servlet.http.HttpServletRequest; </p> <p>import javax.servlet.http.HttpServletResponse; </p> <p>import jxl.Workbook; </p> <p>import jxl.write.WriteException; </p> <p>import jxl.write.biff.RowsExceededException; </p> <p>import org.apache.struts.action.ActionForm; </p> <p>import org.apache.struts.action.ActionForward; </p> <p>import org.apache.struts.action.ActionMapping; </p> <p>import org.hibernate.HibernateException; </p> <p>import org.hibernate.Query; </p> <p>import org.hibernate.Session; </p> <p>import org.hibernate.Transaction; </p> <p>import com.axon.fable.empolderpackage.out.OutJavaScript; </p> <p>import com.axon.fable.empolderpackage.page.Pager; </p> <p>import com.axon.fable.empolderpackage.string.MyPublic; </p> <p>import com.axon.fable.sams.common.BaseAction; </p> <p>import com.axon.fable.sams.exception.AppBusinessException; </p> <p>import com.axon.fable.sams.exception.AppSystemException; </p> <p>/** </p> <p>* MyEclipse Struts </p> <p>* Creation date:</p> <p>* </p> <p>* XDoclet definition: </p> <p>* @struts.action path=”/axon” name=”axonForm” input=”/samspage/zm/axon.jsp” parameter=”method” scope=”request” validate=”true” </p> <p>* @struts.action-forward name=”success” path=”/samspage/zm/content.jsp” </p> <p>*/ </p> <p>public class StshipoperationAction extends BaseAction { </p> <p>/* </p> <p>* Generated Methods </p> <p>*/ </p> <p>private static Session session=null; </p> <p>private static Transaction ts=null; </p> <p>private static Query queryC=null; </p> <p>private static Query queryR=null; </p> <p>private static Query query=null; </p> <p>private static List list=null; </p> <p>private static Integer startRow; </p> <p>private static Integer ncurrentPage; </p> <p>private static Integer cell; </p> <p>private static String property; </p> <p>private static String sql; </p> <p>private static String type; </p> <p>private static String condition ;//是否导出当前页 </p> <p>private static String currentPage; </p> <p>private static String from ; </p> <p>private static String pactdata; </p> <p>private static String voyagename; </p> <p>private static String voyageno; </p> <p>private static String dwt ; </p> <p>private static String hirefrom ; </p> <p>private static String deliveryposion ; </p> <p>private static String redeliveryposion ; </p> <p>private static String sheepowner ; </p> <p>private static String addr; </p> <p>private static String addcomm; </p> <p>private static String rent; </p> <p>private static String fileName ; </p> <p>private static OutputStream os; </p> <p>@Override </p> <p>public ActionForward findAll(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) { </p> <p>// TODO Auto-generated method stub </p> <p>return null; </p> <p>} </p> <p>@Override </p> <p>public ActionForward findById(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) { </p> <p>// TODO Auto-generated method stub </p> <p>return null; </p> <p>} </p> <p>@Override </p> <p>public ActionForward save(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) { </p> <p>// TODO Auto-generated method stub </p> <p>return null; </p> <p>} </p> <p>public static String strNull(Object nullStr,String newStr,Integer cell){ </p> <p>if(nullStr==null||nullStr.equals(“”)){return newStr;}else{cell+=1;return nullStr+””;} </p> <p>} </p> <p>public static String getStr(String str,Integer cell){ </p> <p>if(str==null||str.trim().equals(“”)){return “”;}else{cell+=1;return “,”+str;} </p> <p>} </p> <p>public static String getExcelTile(String title){ </p> <p>if(title==null) </p> <p>return “”; </p> <p>if(title.equals(“modela.stsid”)) </p> <p>return “编号”; </p> <p>if(title.equals(“modelc.pactdata”)) </p> <p>return “合同日期”; </p> <p>if(title.equals(“modela.voyagename”)) </p> <p>return “航名”; </p> <p>if(title.equals(“modela.voyageno”)) </p> <p>return “航次”; </p> <p>if(title.equals(“modelc.dwt”)) </p> <p>return “DWT”; </p> <p>if(title.equals(“modelc.hirefrom”)) </p> <p>return “受载期”; </p> <p>if(title.equals(“modela.deliveryposion”)) </p> <p>return “交船地点”; </p> <p>if(title.equals(“modela.redeliveryposion”)) </p> <p>return “还船地点”; </p> <p>if(title.equals(“modelc.sheepowner”)) </p> <p>return “联系人”; </p> <p>if(title.equals(“modelc.addr”)) </p> <p>return “经纪人拥金”; </p> <p>if(title.equals(“modelc.addcomm”)) </p> <p>return “ADD COMM”; </p> <p>if(title.equals(“modelc.rent”)) </p> <p>return “租金”; </p> <p>return “”; </p> <p>} </p> <p>public ActionForward exporVoyagesInfoToExcel(ActionMapping mapping, ActionForm form, </p> <p>HttpServletRequest request, HttpServletResponse response) { </p> <p>list=null; </p> <p>startRow=0; </p> <p>ncurrentPage=1; </p> <p>cell=0; </p> <p>type =request.getParameter(“type”); </p> <p>condition =request.getParameter(“condition”);//是否导出当前页 </p> <p>currentPage =request.getParameter(“currentPage”); </p> <p>from =request.getParameter(“from”); </p> <p>pactdata = request.getParameter(“modelc.pactdata”); </p> <p>voyagename = request.getParameter(“modela.voyagename”); </p> <p>voyageno = request.getParameter(“modela.voyageno”); </p> <p>dwt = request.getParameter(“modelc.dwt”); </p> <p>hirefrom = request.getParameter(“modelc.hirefrom”); </p> <p>deliveryposion = request.getParameter(“modela.deliveryposion”); </p> <p>redeliveryposion = request.getParameter(“modela.redeliveryposion”); </p> <p>sheepowner = request.getParameter(“modelc.sheepowner”); </p> <p>addr = request.getParameter(“modelc.addr”); </p> <p>addcomm = request.getParameter(“modelc.addcomm”); </p> <p>rent = request.getParameter(“modelc.rent”); </p> <p>if(type!=null&&type.trim().equals(“1”)){ </p> <p>type =”已还船舶–费用未结清”; </p> <p>}else{ </p> <p>type =”已还船舶–费用已结清”; </p> <p>} </p> <p>property =getStr(pactdata,cell)+getStr(voyagename,cell)+getStr(voyageno,cell)+getStr(dwt,cell)+getStr(hirefrom,cell) </p> <p>+getStr(deliveryposion,cell)+getStr(redeliveryposion,cell)+getStr(sheepowner,cell)+getStr(addr,cell)+getStr(addcomm,cell) </p> <p>+getStr(rent,cell); </p> <p>property = property.substring(1); </p> <p>String split = property.split(“,”); </p> <p>// System.out.println(“-property:”+property); </p> <p>if(currentPage!=null&&!currentPage.trim().equals(“”)){ </p> <p>ncurrentPage =Integer.parseInt(currentPage); </p> <p>}else{ </p> <p>OutJavaScript.outString(response, “Sorry! Failed to get information of pager.”); </p> <p>return null; </p> <p>} </p> <p>try { </p> <p>session =getServiceLocator().getBaseHibernateDAO().getSession(); </p> <p>sql =”select count(*) “+from; </p> <p>query =session.createQuery(sql); </p> <p>list = query.list(); </p> <p>for (int i = 0; i </p> <p>totalSize =(Integer)list.get(i); </p> <p>if(totalSize!=0){ </p> <p>pager =new Pager(ncurrentPage,totalSize); </p> <p>} </p> <p>} </p> <p>query =getServiceLocator().getBaseHibernateDAO().getSession().createQuery(“select ” +property+from); </p> <p>if(condition!=null&&condition.trim().equals(“1”)){//分页数据 </p> <p>startRow = (ncurrentPage – 1)*pager.getPageSize(); </p> <p>query.setFirstResult(startRow); </p> <p>query.setMaxResults(pager.getPageSize()); </p> <p>// System.out.println(“query:”+query); </p> <p>} </p> <p>list = query.list(); </p> <p>fileName = “shipInfo”; </p> <p>os = response.getOutputStream(); </p> <p>response.reset(); </p> <p>response.setHeader(“Content-disposition”, </p> <p>“attachment; filename=” +fileName + “.xls”); </p> <p>response.setContentType(“application/msexcel”); </p> <p>jxl.write.WritableWorkbook wbook = Workbook.createWorkbook(os); </p> <p>jxl.write.WritableSheet wsheet = wbook.createSheet(“the first sheet”, 0); </p> <p>for (int i = 0; i </p> <p>jxl.write.Label wlabel0; </p> <p>wlabel0 = new jxl.write.Label(i, 0, getExcelTile(split<i>)); </p> <p><p>wsheet.addCell(wlabel0); </p> <p>} </p> <p>jxl.write.Label wlabel1; </p> <p>for(int i=0;i</p> <p>if(split.length==1){ </p> <p>Object strval = (Object) list.get(i); </p> <p>String javaScript=””+MyPublic.toHtmlStr(strval==null?””:strval.toString().trim())+””; </p> <p>wlabel1 = new jxl.write.Label(0, i+1,strval==null?””:strval.toString().trim() ); </p> <p>wsheet.addCell(wlabel1); </p> <p>}else{ </p> <p>Object strval = (Object) list.get(i); </p> <p>for(int j=0;j</p> <p>String javaScript=””+MyPublic.toHtmlStr(strval==null?””:strval.toString().trim())+””; </p> <p><p>//System.out.println(“===================script:”+javaScript); </p> <p>wlabel1 = new jxl.write.Label(j, i+1,strval==null?””:strval.toString().trim() ); </p> <p><p>wsheet.addCell(wlabel1); </p> <p>} </p> <p>} </p> <p>} </p> <p>wbook.write(); </p> <p>response.flushBuffer(); </p> <p>wbook.close(); </p> <p>os.close(); </p> <p>} catch (IOException e) { </p> <p>// TODO Auto-generated catch block </p> <p>OutJavaScript.outString(response, “Sorry! Export Excel exception.”); </p> <p>e.printStackTrace(); </p> <p>} catch (HibernateException e1) { </p> <p>// TODO Auto-generated catch block </p> <p>OutJavaScript.outString(response, “Sorry! Database exception.”); </p> <p>e1.printStackTrace(); </p> <p>} catch (AppSystemException e1) { </p> <p>// TODO Auto-generated catch block </p> <p>OutJavaScript.outString(response, “Sorry! System exception.”); </p> <p>e1.printStackTrace(); </p> <p>} catch (AppBusinessException e1) { </p> <p>// TODO Auto-generated catch block </p> <p>OutJavaScript.outString(response, “Sorry! Database exception.”); </p> <p>e1.printStackTrace(); </p> <p>} catch (RowsExceededException e) { </p> <p>// TODO Auto-generated catch block </p> <p>OutJavaScript.outString(response, “Sorry! Export Excel exception.”); </p> <p>e.printStackTrace(); </p> <p>} catch (WriteException e) { </p> <p>// TODO Auto-generated catch block </p> <p>OutJavaScript.outString(response, “Sorry! Export Excel exception.”); </p> <p>e.printStackTrace(); </p> <p>} </p> <p>return null; </p> <p>} </p> <p>@Override </p> <p>public ActionForward update(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) { </p> <p>// TODO Auto-generated method stub </p> <p>return null; </p> <p>} </p> <p>}</p> <p>还有其他很多种 字数限制 无法一一举例方式</p> <p>这个好像不能实现吧,导出的应该都是文本的!</p> <h3 id="如何从java输出到excel"><span id="javaexcel-2">如何从java输出到excel</span></h3> <p>用JAVA程序,读取或者写入excel文件戚岁,通过用jxl或者poi,下面是我给你写的例子。分别是用jxl读写excel文件,用poi读写excel文件。希望对你有帮助。(需要下载jxl和poi的jar包仿蚂)</p> <p>package util.excel;</p> <p>import java.io.FileInputStream;</p> <p>import java.io.FileOutputStream;</p> <p>import java.io.IOException;</p> <p>import java.util.ArrayList;</p> <p>import java.util.HashMap;</p> <p>import java.util.List;</p> <p>import java.util.Map;</p> <p>import jxl.Cell;</p> <p>import jxl.Sheet;</p> <p>import jxl.Workbook;</p> <p>import jxl.format.Colour;</p> <p>import jxl.format.UnderlineStyle;</p> <p>import jxl.write.Label;</p> <p>import jxl.write.WritableCellFormat;</p> <p>import jxl.write.WritableFont;</p> <p>import jxl.write.WritableSheet;</p> <p>import jxl.write.WritableWorkbook;</p> <p>import org.apache.poi.hssf.usermodel.HSSFCell;</p> <p>import org.apache.poi.hssf.usermodel.HSSFRichTextString;</p> <p>import org.apache.poi.hssf.usermodel.HSSFRow;</p> <p>import org.apache.poi.hssf.usermodel.HSSFSheet;</p> <p>import org.apache.poi.hssf.usermodel.HSSFWorkbook;</p> <p>import org.apache.poi.poifs.filesystem.POIFSFileSystem;</p> <p>public class ExcelUtil {</p> <p> /**</p> <p> * @param args</p> <p> * @throws IOException</p> <p> */</p> <p> public static void main(String args) throws IOException {</p> <p> String outFile = “D:/workspace/JavaStudy/src/util/excel/test.xls”;</p> <p> ExcelUtil.writeExcelByJXL(outFile, null);</p> <p> }</p> <p> /**</p> <p> * </p> <p> * @title: readExcelByJXL</p> <p> * @description: 通过jxl读取excel文件</p> <p> * @author yu ren tian </p> <p> * @email </p> <p> * @param excelFile</p> <p> * @return</p> <p> * @throws IOException</p> <p> */</p> <p> private static List readExcelByJXL(String excelFile) throws IOException {</p> <p> List rtn = new ArrayList();</p> <p> FileInputStream fileInputStream = null;</p> <p> try {</p> <p> fileInputStream = new FileInputStream(excelFile);</p> <p> Workbook excelWorkBook = Workbook.getWorkbook(fileInputStream);</p> <p> Sheet sheet = excelWorkBook.getSheet(0);</p> <p> int m = sheet.getRows();</p> <p> int n = sheet.getColumns();</p> <p> for (int i = 1; i </p> <p>function AllAreaExcel() { </p> <p>var title;</p> <p>title=document.getElementsByTagName(“table”).childNodes.item(0).childNodes(0).childNodes(0).innerText;</p> <p><p>alert(title);</p> <p>var oXL = new ActiveXObject(“Excel.Application”); </p> <p>var oWB = oXL.Workbooks.Add(); </p> <p>var oSheet = oWB.ActiveSheet; </p> <p>//从excel的第5行开始插入</p> <p>oSheet.Range(“A5”).select; </p> <p>oWB .Worksheets(1).Activate;</p> <p>oSheet.Cells(3,1).Value=title; //在第3行插入报表头</p> <p>oWB.Worksheets(1).Range(“A3:I3”).merge(); // 合并单元格区域 A3:I3</p> <p>oWB.Worksheets(1).Range(“亩掘A3:I3”).HorizontalAlignment=3; //旁或居中对齐A3:I3</p> <p>var sel=document.body.createTextRange();</p> <p>sel.moveToElementText(table1); //table 的ID值</p> <p>sel.select();</p> <p>sel.execCommand(“Copy”);</p> <p>oSheet.Paste(); </p> <p>oXL.Visible = true;</p> <h3 id="Java怎样将数据库中数据导出为Excel文件,求完整例子附带数据库。"><span id="JavaExcel">Java怎样将数据库中数据导出为Excel文件,求完整例子附带数据库。</span></h3> <p>用POI啊!</p> <p>感觉挺好使的,刚刚做完一个账目表导出。</p> <p>下面是我写的一个运用jxl生成Excel文件的方法</p> <p>该方法接收一个保存MarkesData数据的ArrayList arlist和文件生成路径Path</p> <p>通过取得arlist里的数据生成Excel文件</p> <p>感觉应尺知该是你想要的 我没调试过也许有错 你也可以根据你的需要进握穗行修改^_^</p> <p>import java.io.File;</p> <p>import java.io.IOException;</p> <p>import java.util.ArrayList;</p> <p>import java.util.Iterator;</p> <p>import jxl.Workbook;</p> <p>import jxl.write.Label;</p> <p>import jxl.write.WritableSheet;</p> <p>import jxl.write.WritableWorkbook;</p> <p>import jxl.write.WriteException;</p> <p>import jxl.write.biff.RowsExceededException;</p> <p>public class WriteExcel {</p> <p>WritableWorkbook book=null;</p> <p>public void OutputExcel(ArrayList arlist,String Path){</p> <p> try{</p> <p>book = Workbook.createWorkbook(new File(Path));</p> <p>//设置表名</p> <p>WritableSheet sheet = book.createSheet(“考试单”,0);</p> <p>//生成表格题头</p> <p>Label labe1 = new Label(0, 0, “考生姓名” );</p> <p>Label labe2 = new Label(1, 0, “地区”);</p> <p>Label labe3 = new Label(2, 0, “所属院校”);</p> <p>Label labe4 = new Label(3, 0, “班级”);</p> <p>Label labe5 = new Label(4, 0, “考试号”);</p> <p>Label labe6 = new Label(5, 0, “考试时间”);</p> <p>Label labe7 = new Label(6, 0, “科目名称”);</p> <p>//将生成的段困卜单元格添加到工作表中 </p> <p>sheet.addCell(labe1);</p> <p>sheet.addCell(labe2);</p> <p>sheet.addCell(labe3);</p> <p>sheet.addCell(labe4);</p> <p>sheet.addCell(labe5);</p> <p>sheet.addCell(labe6);</p> <p>sheet.addCell(labe7);</p> <p>Iterator it = arlist.iterator();</p> <p>int i = 1;</p> <p> while(it.hasNext()){</p> <p>//通过迭代获得arlist里的MarkesData对象</p> <p>MarkesData temp = (MarkesData)it.next();</p> <p>//取得数据生成单元格</p> <p>Label label1=new Label(0,i,temp.getUser_name());</p> <p>Label label2=new Label(1,i,temp.getArea_name());</p> <p>Label label3=new Label(2,i,temp.getCollege_name());</p> <p>Label label4=new Label(3,i,temp.getClass_name());</p> <p>Label label5=new Label(4,i,temp.getTest_name());</p> <p>Label label6=new Label(5,i,temp.getStarttime());</p> <p>Label label7=new Label(6,i,temp.getSubject_name());</p> <p>//将生成的单元格添加到工作表中 </p> <p>sheet.addCell(label1);</p> <p>sheet.addCell(label2);</p> <p>sheet.addCell(label3);</p> <p>sheet.addCell(label4);</p> <p>sheet.addCell(label5);</p> <p>sheet.addCell(label6);</p> <p>sheet.addCell(label7); </p> <p>i++;</p> <p>}</p> <p>book.write(); </p> <p>book.close();</p> <p>} catch (RowsExceededException e) { </p> <p>e.printStackTrace(); </p> <p>} catch (WriteException e) { </p> <p>e.printStackTrace(); </p> <p>} catch (IOException e) { </p> <p>e.printStackTrace(); </p> <p>} finally{</p> <p>try{</p> <p> if(book!=null)book.close();</p> <p>}catch(Exception e){</p> <p> System.out.println(“exception when closing Connection in finally”);</p> <p> System.out.println(e.getMessage().toString());</p> <p>}</p> <p>}</p> <p> }</p> <p>}</p> <p>java导出数据库数据为excel的介绍就聊到这里吧,感谢你花时间阅读本站内容,更多关于java导出数据库数据为excel,用Java轻松实现数据库数据导出为Excel表格,java导出excel,如何从java输出到excel,Java怎样将数据库中数据导出为Excel文件,求完整例子附带数据库。的信息别忘了在本站进行查找喔。</p> <div class='yarpp yarpp-related yarpp-related-website yarpp-template-list'> <!-- YARPP List --> <h3>相关推荐:</h3><ol> <li><a href="https://www.88531.cn/28059.html" rel="bookmark" title="Docker安装RustDesk Server服务器搭建含api服务器和webclient服务器直接网页访问教程">Docker安装RustDesk Server服务器搭建含api服务器和webclient服务器直接网页访问教程</a> <small>RustDesk Server自建服务器 网上找的教程大部分都是 中继和转发的教程 […]...</small></li> <li><a href="https://www.88531.cn/27082.html" rel="bookmark" title="WPCopyRights网站文章内容防复制wordpress插件">WPCopyRights网站文章内容防复制wordpress插件</a> <small>下载地址: 此处内容已经被作者隐藏,请输入验证码查看内容验证码:点击[获取验证码连接 […]...</small></li> <li><a href="https://www.88531.cn/16729.html" rel="bookmark" title="Oracle数据库修改编码方法详解 (oracle修改数据库编码)">Oracle数据库修改编码方法详解 (oracle修改数据库编码)</a> <small>随着全球信息化的发展,跨国企业或者跨国机构之间数据交换变得越来越频繁。在这种情况下,如何保证数据传输过程中的数据编码是一致的显得非常重要。Oracle数据库是面向高效率处理海量数据的一款数据库,因此Oracle数据库常常承担着数据交换的任务。然而,由于不同的国家或者地区的编码可能不同,当Oracle数据库与其他机构或者Oracle数据库之间进行数据交换时,可能会出现编码错误的情况。因此,在Oracle数据库中,修改数据编码方式就显得尤为重要。...</small></li> <li><a href="https://www.88531.cn/8738.html" rel="bookmark" title="WordPress 主题里timthumb.php无法调出外链图片缩略图">WordPress 主题里timthumb.php无法调出外链图片缩略图</a> <small>有时候我们会遇到外链图片没法自动用timthumb.php来剪切,除了文件夹权限外,还有可能的一个原因是需要手动添加下授权域名。...</small></li> <li><a href="https://www.88531.cn/828.html" rel="bookmark" title="PHP实践:手把手微信公众号网页授权登录功能实现">PHP实践:手把手微信公众号网页授权登录功能实现</a> <small>🏆作者简介,黑夜开发者,全栈领域新星创作者✌,CSDN博客专家,阿里云社区专家博主,2023年6月CSDN上海赛道top4。 🏆数年电商行业从业经验,历任核心研发工程师,项目技术负责人。 🏆本文已收录于PHP专栏:PHP进阶实战教程。 🏆另有专栏PHP入门基础教程,希望各位大佬多多支持❤️。 🎉欢迎 👍点赞✍评论⭐收藏...</small></li> </ol> </div> <!--打赏展示--> <div id="dcontainer" style="text-align:center;font-size:1.1rem; font-weight:bold;"> <div class="donate" style="width:100%;background-color: rgba(0, 128, 0, 0.3);"><p>创作不易,用心坚持,请喝一怀爱心咖啡!继续坚持创作~~</p></div> <div class="text_p"> <img src="./wp-content/uploads/ds.png" width="500" height="200" /> </div> </div> </div> <div id="pay-single-box"></div> <div class="ripro_gg_wrap pc"><div style="color:red;">100T高转存免费网盘资源精选【持续更中~~~~】:<a href='https://link3.cc/88531cn' target="_blank">点击查看</a></div> <hr /> <a href='http://doc.88531.cn/docs/yfwqtj' target="_blank"><img class="alignnone size-full wp-image-38236" src="/wp-content/uploads/txad/2.png" alt="" width="100%" /></a></div><div class="article-footer"> <div class="author-box"> <div class="author-image"> </div> <div class="author-info"> <h4 class="author-name"> <a target="_blank" href="javascript:;">NO.1</a> <span class="label label-warning"><i class="fa fa-diamond"></i> 钻石</span> </h4> </div> </div> <div class="xshare"> <span class="xshare-title">分享到:</span> <a href="javascript:;" title="收藏文章" etap="star" data-postid="16774" class="ripro-star"><i class="fa fa-star-o"></i></a> <a href="" etap="share" data-share="qq" class="share-qq"><i class="fa fa-qq"></i></a> <a href="" etap="share" data-share="weibo" class="share-weibo"><i class="fa fa-weibo"></i></a> </div> </div> </div> </div> </article> <div class="entry-navigation"> <nav class="article-nav"> <span class="article-nav-prev">上一篇<br><a href="https://www.88531.cn/14519.html" rel="prev">的数据?如何查询ON数据库内数据? (js怎么查询json数据库中)</a></span> <span class="article-nav-next">下一篇<br><a href="https://www.88531.cn/12415.html" rel="next">数据库表中的三线表:优化性能与提高效率 (数据库表三线表)</a></span> </nav> </div> <div class="bottom-area"> <div id="comments" class="comments-area"> <div id="respond" class="comment-respond"> <h3 id="reply-title" class="comment-reply-title">发表回复 <small><a rel="nofollow" id="cancel-comment-reply-link" href="/16774.html#respond" style="display:none;">取消回复</a></small></h3><p class="must-log-in">要发表评论,您必须先<a href="https://www.88531.cn/wp-login.php?redirect_to=https%3A%2F%2Fwww.88531.cn%2F16774.html">登录</a>。</p> </div><!-- #respond --> </div> </div> </main> </div> </div> <div class="sidebar-column col-lg-3"> <aside class="widget-area"> <div id="block-5" class="widget widget_block"><div style="color:red;">100T免费网盘热门资源:<a href='https://link3.cc/88531cn' target="_blank">点击查看</a></div></div> <div id="recent-posts-3" class="widget widget_recent_entries"> <h5 class="widget-title">最近更新</h5> <ul> <li> <a href="https://www.88531.cn/46843.html">运营商光猫自带防火墙导致NAS无法被互联网上的IPV6用户访问</a> </li> <li> <a href="https://www.88531.cn/46817.html">飞牛FNOS解决应用中心安装的小雅Alist无数据的方法 部署方法+token获取详细教程适合新手</a> </li> <li> <a href="https://www.88531.cn/46833.html">【安卓+PC+IOS+TV】毒舌电影 纯净版 安卓v3.3.9+iOS v0518+TV 1.0.2+PCv1.1.3/内置多条超清蓝光线路</a> </li> <li> <a href="https://www.88531.cn/46806.html">4K Video Downloader Plus 25.3.4.0241 便携绿色解锁专业版 主流平台视频批量下载</a> </li> <li> <a href="https://www.88531.cn/46801.html">DriverMax 16.22.0.25 便携版 – 一款不限速的自动检测、下载和安装的驱动程序管理</a> </li> <li> <a href="https://www.88531.cn/46728.html">WPS Office 18.21 解锁付费功能多项优化版 – 最火的安卓办公APP</a> </li> <li> <a href="https://www.88531.cn/46759.html">FileZilla:一款能跑满带宽的超强FTP免费开源软件 安装配置教程以及保姆级使用教程(超级详细)</a> </li> <li> <a href="https://www.88531.cn/46789.html">自动点击宝安卓版 无需root高效自动化神器</a> </li> </ul> </div><div id="toc-widget-10" class="widget toc_widget"><h5 class="widget-title">目录</h5><ul class="toc_widget_list no_bullets"><li><a href="#javaexcel"><span class="toc_number toc_depth_1">1</span> java导出excel</a></li><li><a href="#javaexcel-2"><span class="toc_number toc_depth_1">2</span> 如何从java输出到excel</a></li><li><a href="#JavaExcel"><span class="toc_number toc_depth_1">3</span> Java怎样将数据库中数据导出为Excel文件,求完整例子附带数据库。</a></li></ul></div><div id="linkcat-181" class="widget widget_links"><h5 class="widget-title">本站推荐</h5> <ul class='xoxo blogroll'> <li><a href="https://link3.cc/88531cn" title="最新的资源导航站" target="_blank">资源导航站</a> 最新的资源导航站</li> <li><a href="http://doc.88531.cn/docs/mrfx" title="包含:软件/APP/影视/音乐/素材/学习资料" target="_blank">100T高转存网盘资源</a> 包含:软件/APP/影视/音乐/素材/学习资料</li> <li><a href="http://app.88531.cn:48124" title="IT-TOOL工具箱" target="_blank">IT-TOOL</a> IT-TOOL工具箱</li> <li><a href="http://app.88531.cn:5080/search" title="全功能的搜索引擎-无广告" target="_blank">SearXNG</a> 全功能的搜索引擎-无广告</li> <li><a href="http://app.88531.cn:8005/?lang=zh_CN" title="PDF在线编辑工具" target="_blank">Stirling PDF</a> PDF在线编辑工具</li> <li><a href="http://app.88531.cn:3006" target="_blank">MoonTV在线免费观影</a></li> </ul> </div> </aside> </div> </div> </div> </div><!-- end sitecoent --> <footer class="site-footer"> <div class="container"> <div class="footer-widget"> <div class="row"> <div class="col-xs-12 col-sm-6 col-md-3 widget--about"> <div class="widget--content"> <div class="footer--logo mb-20"> <img class="tap-logo" src="https://www.88531.cn/wp-content/uploads/2024/08/diugai.com171276885347379-1.png" data-dark="https://www.88531.cn/wp-content/uploads/2024/08/diugai.com171276885347379-1.png" alt="资享网"> </div> <p class="mb-10">www.88531.cn资享网,为你提供最优质的资源</p> </div> </div> <!-- .col-md-2 end --> <div class="col-xs-12 col-sm-3 col-md-2 col-md-offset-1 widget--links"> <div class="widget--title"> <h5>本站导航</h5> </div> <div class="widget--content"> <ul class="list-unstyled mb-0"> </ul> </div> </div> <!-- .col-md-2 end --> <div class="col-xs-12 col-sm-3 col-md-2 widget--links"> <div class="widget--title"> <h5>友情链接</h5> </div> <div class="widget--content"> <ul class="list-unstyled mb-0"> </ul> </div> </div> <!-- .col-md-2 end --> <div class="col-xs-12 col-sm-12 col-md-4 widget--newsletter"> <div class="widget--title"> <h5>快速搜索</h5> </div> <div class="widget--content"> <form class="newsletter--form mb-30" action="https://www.88531.cn/" method="get"> <input type="text" class="form-control" name="s" placeholder="关键词"> <button type="submit"><i class="fa fa-arrow-right"></i></button> </form> <h6>商务合作QQ:3970260761<br> 公众号:软师兄<br> 默认解压密码:12345</h6> </div> </div> </div> </div> <div class="footer-links"> <h6>友情链接:</h6> <ul class="friendlinks-ul"> <li><a target="_blank" href="https://www.123pan.com/s/MhYbVv-8oTJv.html" title="常用工具 " target="_blank">常用工具 </a></li><li><a target="_blank" href="http://doc.88531.cn" title="文档教程" target="_blank">文档教程</a></li><li><a target="_blank" href="https://bt.88531.cn" title="宝塔开心版" target="_blank">宝塔开心版</a></li><li><a target="_blank" href="https://www.88531.cn/38546.html" title="小雅一键" target="_blank">小雅一键</a></li><li><a target="_blank" href="https://link3.cc/88531cn" title="资源导航站" target="_blank">资源导航站</a></li><li><a target="_blank" href="http://doc.88531.cn/docs/mrfx" title="100T高转存网盘资源" target="_blank">100T高转存网盘资源</a></li><li><a target="_blank" href="https://doc.88531.cn/docs/mrfx/mrfx-1gamrv9phanpv" title="黑科技工具箱" target="_blank">黑科技工具箱</a></li><li><a target="_blank" href="https://pan.88531.cn" title="网盘拉新连接生成" target="_blank">网盘拉新连接生成</a></li><li><a target="_blank" href="http://app.88531.cn:48124" title="IT-TOOL" target="_blank">IT-TOOL</a></li><li><a target="_blank" href="http://app.88531.cn:5080/search" title="SearXNG" target="_blank">SearXNG</a></li><li><a target="_blank" href="http://app.88531.cn:8005/?lang=zh_CN" title="Stirling PDF" target="_blank">Stirling PDF</a></li><li><a target="_blank" href="http://app.88531.cn:3006" title="MoonTV在线免费观影" target="_blank">MoonTV在线免费观影</a></li> </ul> </div> <div class="site-info"> © 2025Theme by - 88531资享网 <a href="https://beian.miit.gov.cn" target="_blank" class="text" rel="noreferrer nofollow"> 陕ICP备2023008366号-4</a> <br> </div> </div> </footer> <div class="rollbar"> <div class="rollbar-item tap-dark" etap="tap-dark" title="夜间模式"><i class="mdi mdi-brightness-4"></i></div> <div class="rollbar-item tap-click-qiandao"><a class="click-qiandao" title="签到" href="javascript:;"><i class="fa fa-calendar-check-o"></i></a></div> <div class="rollbar-item tap-pencil"><a target="_blank" title="投稿赚钱" href="https://www.88531.cn/wp-admin/post-new.php"><i class="fa fa-pencil"></i></a></div> <div class="rollbar-item tap-qq" etap="tap-qq"><a target="_blank" title="QQ咨询" href="http://wpa.qq.com/msgrd?v=3&uin=3970260761&site=qq&menu=yes"><i class="fa fa-qq"></i></a></div> <div class="rollbar-item tap-blog-style" etap="tap-blog-style" data-id="1" title="博客模式"><i class="fa fa-list"></i></div> <div class="rollbar-item" etap="to_full" title="全屏页面"><i class="fa fa-arrows-alt"></i></div> <div class="rollbar-item" etap="to_top" title="返回顶部"><i class="fa fa-angle-up"></i></div> </div> <div class="dimmer"></div> <div id="popup-signup" class="popup-signup fade" style="display: none;"> <div class="register-login-modal" role="document"> <div class="modal-content"> <div class="modal-body"> <img class="popup-logo" src="https://www.88531.cn/wp-content/uploads/2024/08/diugai.com171276885347379-1.png" data-dark="https://www.88531.cn/wp-content/uploads/2024/08/diugai.com171276885347379-1.png" alt="资享网"> <!-- Nav tabs --> <ul class="nav nav-tabs"> <li class="active"><a href="#login" data-toggle="login">登录</a> </li> <li><a href="#signup" data-toggle="signup">注册</a> </li> </ul> <!-- Tab panes --> <div class="tab-content"> <div class="tab-pane fade in active" id="login"> <div class="signup-form-container text-center"> <form class="mb-0"> <div class="form-group"> <input type="text" class="form-control" name="username" placeholder="*用户名或邮箱"> </div> <div class="form-group"> <input type="password" class="form-control" name="password" placeholder="*密码"> </div> <button type="button" class="go-login btn btn--primary btn--block"><i class="fa fa-bullseye"></i> 安全登录</button> <!-- <a href="#" class="forget-password">忘记密码?</a> --> </form> <!-- form end --> </div> <!-- .signup-form end --> </div> <div class="tab-pane fade in" id="signup"> <form class="mb-0"> <div class="form-group"> <input type="text" class="form-control" name="user_name" placeholder="输入英文用户名"> </div> <!-- .form-group end --> <div class="form-group"> <input type="email" class="form-control" name="user_email" placeholder="绑定邮箱"> </div> <!-- .form-group end --> <div class="form-group"> <input type="password" class="form-control" name="user_pass" placeholder="密码最小长度为6"> </div> <div class="form-group"> <input type="password" class="form-control" name="user_pass2" placeholder="再次输入密码"> </div> <div class="form-group"> <div class="input-group"> <input type="text" class="form-control" name="captcha" placeholder="邮箱验证码"> <span class="input-group-btn"> <button class="go-captcha_email btn btn--secondary" type="button">发送验证码</button> </span> </div> </div> <button type="button" class="go-register btn btn--primary btn--block"><i class="fa fa-bullseye"></i> 立即注册</button> </form> <!-- form end --> </div> </div> <a target="_blank" href="https://www.88531.cn/wp-login.php?action=lostpassword" class="rest-password">忘记密码?</a> </div> <!-- /.modal-content --> </div> <!-- /.modal-dialog --> </div> <!-- /.modal --> </div> <div class="off-canvas"> <div class="canvas-close"><i class="mdi mdi-close"></i></div> <div class="logo-wrapper"> <a href="https://www.88531.cn/"> <img class="logo regular" src="https://www.88531.cn/wp-content/uploads/2024/08/diugai.com171276885347379-1.png" alt="资享网"> </a> </div> <div class="mobile-menu hidden-lg hidden-xl"></div> <aside class="widget-area"> </aside> </div> <script> console.log("SQL 请求数:103"); console.log("页面生成耗时: 0.31856"); </script> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?225297bceab00c11f86be5cf7eefe4ca"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> <script type="speculationrules"> {"prefetch":[{"source":"document","where":{"and":[{"href_matches":"\/*"},{"not":{"href_matches":["\/wp-*.php","\/wp-admin\/*","\/wp-content\/uploads\/*","\/wp-content\/*","\/wp-content\/plugins\/*","\/wp-content\/themes\/ripro9.0\/*","\/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} </script> <script>window._ERPHPDOWN = {"uri":"https://www.88531.cn/wp-content/plugins/erphpdown", "payment": "1", "wppay": "link", "tuan":"", "author": "mobantu"}</script> <link rel='stylesheet' id='yarppRelatedCss-css' href='https://www.88531.cn/wp-content/plugins/yet-another-related-posts-plugin/style/related.css?ver=5.30.11' type='text/css' media='all' /> <link rel='stylesheet' id='buttons-css' href='https://www.88531.cn/wp-includes/css/buttons.min.css?ver=6.8.1' type='text/css' media='all' /> <script type="text/javascript" id="toc-front-js-extra"> /* <![CDATA[ */ var tocplus = {"visibility_show":"show","visibility_hide":"hide","visibility_hide_by_default":"1","width":"Auto"}; /* ]]> */ </script> <script type="text/javascript" src="https://www.88531.cn/wp-content/plugins/table-of-contents-plus/front.min.js?ver=2411.1" id="toc-front-js"></script> <script type="text/javascript" src="https://www.88531.cn/wp-content/themes/ripro9.0/assets/js/plugins.js?ver=9.0(8.9新版修复解密增强版)" id="plugins-js"></script> <script type="text/javascript" id="app-js-extra"> /* <![CDATA[ */ var caozhuti = {"site_name":"\u8d44\u4eab\u7f51","home_url":"https:\/\/www.88531.cn","ajaxurl":"https:\/\/www.88531.cn\/wp-admin\/admin-ajax.php","is_singular":"1","tencent_captcha":{"is":"0","appid":""},"infinite_load":"\u52a0\u8f7d\u66f4\u591a","infinite_loading":"<i class=\"fa fa-spinner fa-spin\"><\/i> \u52a0\u8f7d\u4e2d...","site_notice":{"is":"0","color":"rgb(33, 150, 243)","html":"<div class=\"notify-content\"><h3>\u6b22\u8fce\u6765\u5230\u8d44\u4eab\u7f51<\/h3><div>\u6211\u4eec\u4e3a\u4f60\u5206\u4eab\u6280\u672f\u548c\u8d44\u6e90<\/div><\/div>"},"pay_type_html":{"html":"<div class=\"pay-button-box\"><div class=\"pay-item\" id=\"alipay\" data-type=\"1\"><i class=\"alipay\"><\/i><span>\u652f\u4ed8\u5b9d<\/span><\/div><div class=\"pay-item\" id=\"weixinpay\" data-type=\"2\"><i class=\"weixinpay\"><\/i><span>\u5fae\u4fe1\u652f\u4ed8<\/span><\/div><\/div><p style=\"font-size: 13px; padding: 0; margin: 0;\">\u5f53\u524d\u4e3a\u6e38\u5ba2\u8d2d\u4e70\u6a21\u5f0f<\/p>","alipay":1,"weixinpay":2}}; /* ]]> */ </script> <script type="text/javascript" src="https://www.88531.cn/wp-content/themes/ripro9.0/assets/js/app.js?ver=9.0(8.9新版修复解密增强版)" id="app-js"></script> <script type="text/javascript" src="https://www.88531.cn/wp-content/themes/ripro9.0/assets/js/plugins/jquery.fancybox.min.js?ver=9.0(8.9新版修复解密增强版)" id="fancybox-js"></script> <script type="text/javascript" src="https://www.88531.cn/wp-includes/js/comment-reply.min.js?ver=6.8.1" id="comment-reply-js" async="async" data-wp-strategy="async"></script> <script type="text/javascript" id="q2w3_fixed_widget-js-extra"> /* <![CDATA[ */ var q2w3_sidebar_options = [{"sidebar":"q2w3-default-sidebar","use_sticky_position":false,"margin_top":0,"margin_bottom":0,"stop_elements_selectors":"","screen_max_width":10,"screen_max_height":50,"widgets":["\u3002\u5361"]}]; /* ]]> */ </script> <script type="text/javascript" src="https://www.88531.cn/wp-content/plugins/q2w3-fixed-widget/js/frontend.min.js?ver=6.2.3" id="q2w3_fixed_widget-js"></script> <script type="text/javascript" id="erphpdown-js-extra"> /* <![CDATA[ */ var _ERPHP = {"ajaxurl":"https:\/\/www.88531.cn\/wp-admin\/admin-ajax.php"}; /* ]]> */ </script> <script type="text/javascript" src="https://www.88531.cn/wp-content/plugins/erphpdown/static/erphpdown.js?ver=17.1" id="erphpdown-js"></script> <script type="text/javascript" id="utils-js-extra"> /* <![CDATA[ */ var userSettings = {"url":"\/","uid":"0","time":"1761883096","secure":"1"}; /* ]]> */ </script> <script type="text/javascript" src="https://www.88531.cn/wp-includes/js/utils.min.js?ver=6.8.1" id="utils-js"></script> <script type="text/javascript" src="https://www.88531.cn/wp-admin/js/editor.min.js?ver=6.8.1" id="editor-js"></script> <script type="text/javascript" id="editor-js-after"> /* <![CDATA[ */ window.wp.oldEditor = window.wp.editor; /* ]]> */ </script> <script type="text/javascript" src="https://www.88531.cn/wp-includes/js/hoverIntent.min.js?ver=1.10.2" id="hoverIntent-js"></script> <script type="text/javascript" id="common-js-extra"> /* <![CDATA[ */ var bulkActionObserverIds = {"bulk_action":"action","changeit":"new_role"}; /* ]]> */ </script> <script type="text/javascript" id="common-js-translations"> /* <![CDATA[ */ ( function( domain, translations ) { var localeData = translations.locale_data[ domain ] || translations.locale_data.messages; localeData[""].domain = domain; wp.i18n.setLocaleData( localeData, domain ); } )( "default", {"translation-revision-date":"2025-05-04 17:30:55+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=1; plural=0;","lang":"zh_CN"},"Screen Options updated.":["\u5c4f\u5e55\u9009\u9879\u5df2\u66f4\u65b0\u3002"],"%1$s is deprecated since version %2$s with no alternative available.":["%1$s \u81ea %2$s \u7248\u672c\u5f00\u59cb\u5df2\u5f03\u7528\uff0c\u6ca1\u6709\u66ff\u4ee3\u65b9\u6848\u3002"],"%1$s is deprecated since version %2$s! Use %3$s instead.":["%1$s \u81ea\u7248\u672c %2$s \u8d77\u5df2\u5f03\u7528\uff01\u8bf7\u6539\u7528 %3$s\u3002"],"Please select at least one item to perform this action on.":["\u8bf7\u4e3a\u6b64\u64cd\u4f5c\u9009\u62e9\u81f3\u5c11\u4e00\u4e2a\u9879\u76ee\u3002"],"Expand Main menu":["\u5c55\u5f00\u4e3b\u83dc\u5355"],"Dismiss this notice.":["\u5ffd\u7565\u6b64\u901a\u77e5\u3002"],"You are about to permanently delete these items from your site.\nThis action cannot be undone.\n'Cancel' to stop, 'OK' to delete.":["\u60a8\u5373\u5c06\u4ece\u60a8\u7684\u7ad9\u70b9\u6c38\u4e45\u5220\u9664\u8fd9\u4e9b\u9879\u76ee\u3002\n\u6b64\u64cd\u4f5c\u65e0\u6cd5\u64a4\u6d88\u3002\n\u6309\u300c\u53d6\u6d88\u300d\u53ef\u53d6\u6d88\uff0c\u6309\u300c\u786e\u5b9a\u300d\u53ef\u786e\u8ba4\u5220\u9664\u3002"],"Collapse Main menu":["\u6298\u53e0\u4e3b\u83dc\u5355"]}},"comment":{"reference":"wp-admin\/js\/common.js"}} ); /* ]]> */ </script> <script type="text/javascript" src="https://www.88531.cn/wp-admin/js/common.min.js?ver=6.8.1" id="common-js"></script> <script type="text/javascript" id="wplink-js-extra"> /* <![CDATA[ */ var wpLinkL10n = {"title":"\u63d2\u5165\u6216\u7f16\u8f91\u94fe\u63a5","update":"\u66f4\u65b0","save":"\u6dfb\u52a0\u94fe\u63a5","noTitle":"\uff08\u65e0\u6807\u9898\uff09","noMatchesFound":"\u672a\u627e\u5230\u7ed3\u679c\u3002","linkSelected":"\u94fe\u63a5\u5df2\u9009\u62e9\u3002","linkInserted":"\u94fe\u63a5\u5df2\u63d2\u5165\u3002","minInputLength":"3"}; /* ]]> */ </script> <script type="text/javascript" src="https://www.88531.cn/wp-includes/js/wplink.min.js?ver=6.8.1" id="wplink-js"></script> <script type="text/javascript" src="https://www.88531.cn/wp-includes/js/jquery/ui/core.min.js?ver=1.13.3" id="jquery-ui-core-js"></script> <script type="text/javascript" src="https://www.88531.cn/wp-includes/js/jquery/ui/menu.min.js?ver=1.13.3" id="jquery-ui-menu-js"></script> <script type="text/javascript" src="https://www.88531.cn/wp-includes/js/jquery/ui/autocomplete.min.js?ver=1.13.3" id="jquery-ui-autocomplete-js"></script> <script type="text/javascript"> tinyMCEPreInit = { baseURL: "https://www.88531.cn/wp-includes/js/tinymce", suffix: ".min", mceInit: {'comment':{theme:"modern",skin:"lightgray",language:"zh",formats:{alignleft: [{selector: "p,h1,h2,h3,h4,h5,h6,td,th,div,ul,ol,li", styles: {textAlign:"left"}},{selector: "img,table,dl.wp-caption", classes: "alignleft"}],aligncenter: [{selector: "p,h1,h2,h3,h4,h5,h6,td,th,div,ul,ol,li", styles: {textAlign:"center"}},{selector: "img,table,dl.wp-caption", classes: "aligncenter"}],alignright: [{selector: "p,h1,h2,h3,h4,h5,h6,td,th,div,ul,ol,li", styles: {textAlign:"right"}},{selector: "img,table,dl.wp-caption", classes: "alignright"}],strikethrough: {inline: "del"}},relative_urls:false,remove_script_host:false,convert_urls:false,browser_spellcheck:true,fix_list_elements:true,entities:"38,amp,60,lt,62,gt",entity_encoding:"raw",keep_styles:false,cache_suffix:"wp-mce-49110-20201110",resize:"vertical",menubar:false,branding:false,preview_styles:"font-family font-size font-weight font-style text-decoration text-transform",end_container_on_empty_block:true,wpeditimage_html5_captions:true,wp_lang_attr:"zh-Hans",wp_shortcut_labels:{"Heading 1":"access1","Heading 2":"access2","Heading 3":"access3","Heading 4":"access4","Heading 5":"access5","Heading 6":"access6","Paragraph":"access7","Blockquote":"accessQ","Underline":"metaU","Strikethrough":"accessD","Bold":"metaB","Italic":"metaI","Code":"accessX","Align center":"accessC","Align right":"accessR","Align left":"accessL","Justify":"accessJ","Cut":"metaX","Copy":"metaC","Paste":"metaV","Select all":"metaA","Undo":"metaZ","Redo":"metaY","Bullet list":"accessU","Numbered list":"accessO","Insert\/edit image":"accessM","Insert\/edit link":"metaK","Remove link":"accessS","Toolbar Toggle":"accessZ","Insert Read More tag":"accessT","Insert Page Break tag":"accessP","Distraction-free writing mode":"accessW","Add Media":"accessM","Keyboard Shortcuts":"accessH"},content_css:"https://www.88531.cn/wp-includes/css/dashicons.min.css?ver=6.8.1,https://www.88531.cn/wp-includes/js/tinymce/skins/wordpress/wp-content.css?ver=6.8.1",plugins:"charmap,colorpicker,hr,lists,media,paste,tabfocus,textcolor,fullscreen,wordpress,wpautoresize,wpeditimage,wpemoji,wpgallery,wplink,wpdialogs,wptextpattern,wpview,image",external_plugins:{"InsertInvitationCode":"https:\/\/www.88531.cn\/wp-content\/plugins\/ashuwp-invitaion-code\/tinymce\/\/js\/plugin.js","urvanov_syntax_highlighter_tinymce":"https:\/\/www.88531.cn\/wp-content\/plugins\/urvanov-syntax-highlighter\/util\/tag-editor\/urvanov_syntax_highlighter_tinymce.js"},selector:"#comment",wpautop:true,indent:false,toolbar1:"formatselect,bold,italic,bullist,numlist,blockquote,alignleft,aligncenter,alignright,link,wp_more,wp_page,spellchecker,fullscreen,wp_adv,InsertInvitationCode,separator,urvanov_syntax_highlighter_tinymce",toolbar2:"strikethrough,hr,forecolor,pastetext,removeformat,charmap,outdent,indent,undo,redo,wp_help",toolbar3:"fontselect,styleselect,underline,strikethrough,cleanup,fontsizeselect,backcolor,spellchecker",toolbar4:"",tabfocus_elements:":prev,:next",body_class:"comment post-type-post post-status-publish post-format-standard page-template-default locale-zh-cn",extended_valid_elements:",pre[*],code[*],iframe[*]"}}, qtInit: {'comment':{id:"comment",buttons:"strong,em,link,block,del,ins,img,ul,ol,li,code,more,close"}}, ref: {plugins:"charmap,colorpicker,hr,lists,media,paste,tabfocus,textcolor,fullscreen,wordpress,wpautoresize,wpeditimage,wpemoji,wpgallery,wplink,wpdialogs,wptextpattern,wpview,image",theme:"modern",language:"zh"}, load_ext: function(url,lang){var sl=tinymce.ScriptLoader;sl.markDone(url+'/langs/'+lang+'.js');sl.markDone(url+'/langs/'+lang+'_dlg.js');} }; </script> <script type="text/javascript" src="https://www.88531.cn/wp-includes/js/tinymce/tinymce.min.js?ver=49110-20201110" id="wp-tinymce-root-js"></script> <script type="text/javascript" src="https://www.88531.cn/wp-includes/js/tinymce/plugins/compat3x/plugin.min.js?ver=49110-20201110" id="wp-tinymce-js"></script> <script type='text/javascript'> tinymce.addI18n( 'zh', {"New document":"\u65b0\u6587\u6863","Formats":"\u683c\u5f0f","Headings":"\u6807\u9898","Heading 1":"\u4e00\u7ea7\u6807\u9898","Heading 2":"\u4e8c\u7ea7\u6807\u9898","Heading 3":"\u4e09\u7ea7\u6807\u9898","Heading 4":"\u56db\u7ea7\u6807\u9898","Heading 5":"\u4e94\u7ea7\u6807\u9898","Heading 6":"\u516d\u7ea7\u6807\u9898","Blocks":"\u5757","Paragraph":"\u6bb5\u843d","Blockquote":"\u6bb5\u843d\u5f15\u7528","Preformatted":"\u9884\u683c\u5f0f\u5316","Address":"\u5730\u5740","Inline":"\u884c\u5185","Underline":"\u4e0b\u5212\u7ebf","Strikethrough":"\u5220\u9664\u7ebf","Subscript":"\u4e0b\u6807","Superscript":"\u4e0a\u6807","Clear formatting":"\u6e05\u9664\u683c\u5f0f","Bold":"\u7c97\u4f53","Italic":"\u659c\u4f53","Code":"\u4ee3\u7801","Source code":"\u6e90\u4ee3\u7801","Font Family":"\u5b57\u4f53","Font Sizes":"\u5b57\u53f7","Align center":"\u5c45\u4e2d\u5bf9\u9f50","Align right":"\u53f3\u5bf9\u9f50","Align left":"\u5de6\u5bf9\u9f50","Justify":"\u4e24\u7aef\u5bf9\u9f50","Increase indent":"\u589e\u52a0\u7f29\u8fdb\u91cf","Decrease indent":"\u51cf\u5c11\u7f29\u8fdb\u91cf","Cut":"\u526a\u5207","Copy":"\u590d\u5236","Paste":"\u7c98\u5e16","Select all":"\u5168\u9009","Undo":"\u64a4\u9500","Redo":"\u91cd\u505a","Ok":"\u786e\u5b9a","Cancel":"\u53d6\u6d88","Close":"\u5173\u95ed","Visual aids":"\u89c6\u89c9\u8f85\u52a9","Bullet list":"\u9879\u76ee\u7b26\u53f7\u5217\u8868","Numbered list":"\u7f16\u53f7\u5217\u8868","Square":"\u5b9e\u5fc3\u65b9\u5757","Default":"\u9ed8\u8ba4","Circle":"\u5706\u5708","Disc":"\u5706\u70b9","Lower Greek":"\u5c0f\u5199\u5e0c\u814a\u5b57\u6bcd","Lower Alpha":"\u5c0f\u5199\u82f1\u6587\u5b57\u6bcd","Upper Alpha":"\u5927\u5199\u82f1\u6587\u5b57\u6bcd","Upper Roman":"\u5927\u5199\u7f57\u9a6c\u6570\u5b57","Lower Roman":"\u5c0f\u5199\u7f57\u9a6c\u6570\u5b57","Name":"\u540d\u79f0","Anchor":"\u951a","Anchors":"\u951a","Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.":"Id \u5e94\u4ee5\u5b57\u4f53\u5f00\u5934\uff0c\u540e\u9762\u53ef\u4ee5\u662f\u5b57\u6bcd\u3001\u6570\u5b57\u3001\u77ed\u6a2a\u7ebf\u3001\u70b9\u3001\u5192\u53f7\u6216\u4e0b\u5212\u7ebf\u3002","Document properties":"\u6587\u6863\u5c5e\u6027","Robots":"\u673a\u5668\u4eba","Title":"\u6807\u9898","Keywords":"\u5173\u952e\u5b57","Encoding":"\u7f16\u7801","Description":"\u63cf\u8ff0","Author":"\u4f5c\u8005","Image":"\u56fe\u7247","Insert\/edit image":"\u63d2\u5165\u6216\u7f16\u8f91\u56fe\u7247","General":"\u5e38\u89c4","Advanced":"\u9ad8\u7ea7","Source":"\u6e90","Border":"\u8fb9\u6846","Constrain proportions":"\u4fdd\u6301\u957f\u5bbd\u6bd4","Vertical space":"\u5782\u76f4\u95f4\u9694","Image description":"\u56fe\u7247\u8bf4\u660e","Style":"\u6837\u5f0f","Dimensions":"\u5c3a\u5bf8","Insert image":"\u63d2\u5165\u56fe\u7247","Date\/time":"\u65e5\u671f \/ \u65f6\u95f4","Insert date\/time":"\u63d2\u5165\u65e5\u671f\u3001\u65f6\u95f4","Table of Contents":"\u76ee\u5f55","Insert\/Edit code sample":"\u63d2\u5165 \/ \u7f16\u8f91\u4ee3\u7801\u7247\u6bb5","Language":"\u8bed\u8a00","Media":"\u5a92\u4f53","Insert\/edit media":"\u63d2\u5165 \/ \u7f16\u8f91\u5a92\u4f53","Poster":"\u6d77\u62a5","Alternative source":"\u5907\u7528\u6e90","Paste your embed code below:":"\u8bf7\u5c06\u5d4c\u5165\u4ee3\u7801\u8d34\u5165\u4e0b\u65b9\uff1a","Insert video":"\u63d2\u5165\u89c6\u9891","Embed":"\u5d4c\u5165","Special character":"\u7279\u6b8a\u5b57\u7b26","Right to left":"\u4ece\u53f3\u5230\u5de6","Left to right":"\u4ece\u5de6\u5230\u53f3","Emoticons":"\u8868\u60c5\u7b26\u53f7","Nonbreaking space":"\u4e0d\u95f4\u65ad\u7a7a\u683c","Page break":"\u5206\u9875\u7b26","Paste as text":"\u7c98\u8d34\u4e3a\u6587\u672c","Preview":"\u9884\u89c8","Print":"\u6253\u5370","Save":"\u4fdd\u5b58","Fullscreen":"\u5168\u5c4f","Horizontal line":"\u6c34\u5e73\u7ebf","Horizontal space":"\u6c34\u5e73\u95f4\u9694","Restore last draft":"\u6062\u590d\u4e0a\u4e00\u8349\u7a3f","Insert\/edit link":"\u63d2\u5165\u6216\u7f16\u8f91\u94fe\u63a5","Remove link":"\u79fb\u9664\u94fe\u63a5","Link":"\u94fe\u63a5","Insert link":"\u63d2\u5165\u94fe\u63a5","Target":"\u6253\u5f00\u65b9\u5f0f","New window":"\u65b0\u7a97\u53e3","Text to display":"\u663e\u793a\u6587\u672c","Url":"\u7f51\u5740","The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?":"\u60a8\u8f93\u5165\u7684 URL \u4f3c\u4e4e\u662f\u90ae\u7bb1\u5730\u5740\uff0c\u662f\u5426\u8981\u6dfb\u52a0\u6240\u9700\u7684 mailto: \u524d\u7f00\uff1f","The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?":"\u60a8\u8f93\u5165\u7684\u94fe\u63a5\u4f3c\u4e4e\u662f\u4e2a\u5916\u90e8\u5730\u5740\uff0c\u60a8\u8981\u81ea\u52a8\u52a0\u4e0a http:\/\/ \u200b\u524d\u7f00\u5417\uff1f","Color":"\u989c\u8272","Custom color":"\u81ea\u5b9a\u4e49\u989c\u8272","Custom...":"\u81ea\u5b9a\u4e49\u2026","No color":"\u65e0\u989c\u8272","Could not find the specified string.":"\u65e0\u6cd5\u627e\u5230\u6307\u5b9a\u7684\u5b57\u7b26\u4e32\u3002","Replace":"\u66ff\u6362","Next":"\u4e0b\u4e00\u4e2a","Prev":"\u4e0a\u4e00\u4e2a","Whole words":"\u5339\u914d\u6574\u8bcd","Find and replace":"\u67e5\u627e\u548c\u66ff\u6362","Replace with":"\u66ff\u6362\u4e3a","Find":"\u67e5\u627e","Replace all":"\u5168\u90e8\u66ff\u6362","Match case":"\u5339\u914d\u5927\u5c0f\u5199","Spellcheck":"\u62fc\u5199\u68c0\u67e5","Finish":"\u5b8c\u6210","Ignore all":"\u5168\u90e8\u5ffd\u7565","Ignore":"\u5ffd\u7565","Add to Dictionary":"\u6dfb\u52a0\u81f3\u8bcd\u5178","Insert table":"\u63d2\u5165\u8868\u683c","Delete table":"\u5220\u9664\u8868\u683c","Table properties":"\u8868\u683c\u5c5e\u6027","Row properties":"\u8868\u683c\u884c\u5c5e\u6027","Cell properties":"\u5355\u5143\u683c\u5c5e\u6027","Border color":"\u8fb9\u6846\u989c\u8272","Row":"\u884c\u5217","Rows":"\u884c","Column":"\u5206\u680f","Cols":"\u680f\u76ee","Cell":"\u5355\u5143\u683c","Header cell":"\u8868\u5934\u5355\u5143\u683c","Header":"\u8868\u5934","Body":"\u4e3b\u4f53","Footer":"\u6ce8\u811a","Insert row before":"\u5728\u4e0a\u65b9\u63d2\u5165\u884c","Insert row after":"\u5728\u4e0b\u65b9\u63d2\u5165\u884c","Insert column before":"\u5728\u524d\u65b9\u63d2\u5165\u5217","Insert column after":"\u5728\u540e\u65b9\u63d2\u5165\u5217","Paste row before":"\u5728\u4e0a\u65b9\u7c98\u8d34\u8868\u683c\u884c","Paste row after":"\u5728\u4e0b\u65b9\u7c98\u8d34\u8868\u683c\u884c","Delete row":"\u5220\u9664\u884c","Delete column":"\u5220\u9664\u5217","Cut row":"\u526a\u5207\u8be5\u884c","Copy row":"\u590d\u5236\u8be5\u884c","Merge cells":"\u5408\u5e76\u5355\u5143\u683c","Split cell":"\u62c6\u5206\u5355\u5143\u683c","Height":"\u9ad8\u5ea6","Width":"\u5bbd\u5ea6","Caption":"\u8bf4\u660e\u6587\u5b57","Alignment":"\u5bf9\u9f50\u65b9\u5f0f","H Align":"\u6a2a\u5411\u5bf9\u9f50","Left":"\u5de6","Center":"\u4e2d","Right":"\u53f3","None":"\u65e0","V Align":"\u7eb5\u5411\u5bf9\u9f50","Top":"\u9876\u90e8","Middle":"\u4e2d\u90e8","Bottom":"\u5e95\u90e8","Row group":"\u884c\u7ec4","Column group":"\u680f\u76ee\u7ec4\u5408","Row type":"\u884c\u7c7b\u578b","Cell type":"\u5355\u5143\u683c\u7c7b\u578b","Cell padding":"\u5355\u5143\u683c\u5185\u8fb9\u8ddd","Cell spacing":"\u5355\u5143\u683c\u95f4\u8ddd","Scope":"\u8303\u56f4","Insert template":"\u63d2\u5165\u6a21\u677f","Templates":"\u6a21\u677f","Background color":"\u80cc\u666f\u989c\u8272","Text color":"\u6587\u5b57\u989c\u8272","Show blocks":"\u663e\u793a\u5757","Show invisible characters":"\u663e\u793a\u4e0d\u53ef\u89c1\u5b57\u7b26","Words: {0}":"\u8bcd\u6570\uff1a{0}","Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.":"\u5f53\u524d\u5904\u4e8e\u7eaf\u6587\u672c\u7c98\u8d34\u6a21\u5f0f\uff0c\u7c98\u8d34\u7684\u5185\u5bb9\u5c06\u88ab\u89c6\u4f5c\u7eaf\u6587\u672c\u3002\n\n\u5982\u679c\u60a8\u60f3\u4ece Microsoft Word \u7c98\u8d34\u5185\u5bb9\u5e76\u4fdd\u6301\u539f\u6837\uff0c\u8bf7\u5c1d\u8bd5\u5173\u95ed\u6b64\u9009\u9879\uff0c\u5426\u5219\u7f16\u8f91\u5668\u5c06\u81ea\u52a8\u6e05\u7406\u4ece Word \u7c98\u8d34\u7684\u6587\u672c\u3002","Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help":"\u5bcc\u6587\u672c\u533a\u57df\u3002\u6309 Alt-Shift-H \u83b7\u53d6\u5e2e\u52a9\u3002","Rich Text Area. Press Control-Option-H for help.":"\u5bcc\u6587\u672c\u533a\u57df\u3002\u6309 Control-Option-H \u83b7\u53d6\u5e2e\u52a9\u3002","You have unsaved changes are you sure you want to navigate away?":"\u79bb\u5f00\u8fd9\u4e2a\u9875\u9762\uff0c\u60a8\u6240\u505a\u7684\u66f4\u6539\u5c06\u4e22\u5931\u3002","Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.":"\u60a8\u7684\u6d4f\u89c8\u5668\u4e0d\u652f\u6301\u76f4\u63a5\u8bbf\u95ee\u526a\u8d34\u677f\uff0c\u8bf7\u4f7f\u7528\u952e\u76d8\u5feb\u6377\u952e\u6216\u6d4f\u89c8\u5668\u7684\u7f16\u8f91\u83dc\u5355\u3002","Insert":"\u63d2\u5165","File":"\u6587\u4ef6","Edit":"\u7f16\u8f91","Tools":"\u5de5\u5177","View":"\u67e5\u770b","Table":"\u8868\u683c","Format":"\u683c\u5f0f","Toolbar Toggle":"\u663e\u793a \/ \u9690\u85cf\u5de5\u5177\u680f","Insert Read More tag":"\u63d2\u5165\u300cMore\u300d\u6807\u7b7e","Insert Page Break tag":"\u63d2\u5165\u5206\u9875\u6807\u7b7e","Read more...":"\u9605\u8bfb\u66f4\u591a\u2026","Distraction-free writing mode":"\u4e13\u6ce8\u5199\u4f5c\u6a21\u5f0f","No alignment":"\u65e0\u5bf9\u9f50","Remove":"\u79fb\u9664","Edit|button":"\u7f16\u8f91","Paste URL or type to search":"\u7c98\u8d34 URL \u6216\u952e\u5165\u6765\u641c\u7d22","Apply":"\u5e94\u7528","Link options":"\u94fe\u63a5\u9009\u9879","Visual":"\u53ef\u89c6\u5316","Code|tab":"\u4ee3\u7801","Add Media":"\u6dfb\u52a0\u5a92\u4f53","Keyboard Shortcuts":"\u952e\u76d8\u5feb\u6377\u952e","Classic Block Keyboard Shortcuts":"\u4f20\u7edf\u533a\u5757\u952e\u76d8\u5feb\u6377\u952e","Default shortcuts,":"\u9ed8\u8ba4\u5feb\u6377\u65b9\u5f0f\uff0c","Additional shortcuts,":"\u989d\u5916\u7684\u5feb\u6377\u65b9\u5f0f\uff0c","Focus shortcuts:":"\u7126\u70b9\u5feb\u6377\u65b9\u5f0f\uff1a","Inline toolbar (when an image, link or preview is selected)":"\u5185\u8054\u5de5\u5177\u680f\uff08\u5f53\u56fe\u7247\u3001\u94fe\u63a5\u6216\u9884\u89c8\u88ab\u9009\u4e2d\u65f6\uff09","Editor menu (when enabled)":"\u7f16\u8f91\u83dc\u5355\uff08\u5982\u88ab\u542f\u7528\uff09","Editor toolbar":"\u7f16\u8f91\u5de5\u5177\u680f","Elements path":"\u5143\u7d20\u8def\u5f84","Ctrl + Alt + letter:":"Ctrl+Alt+ \u5b57\u6bcd\uff1a","Shift + Alt + letter:":"Shift+Alt+ \u5b57\u6bcd\uff1a","Cmd + letter:":"Cmd+ \u5b57\u6bcd\uff1a","Ctrl + letter:":"Ctrl+ \u5b57\u6bcd\uff1a","Letter":"\u5b57\u6bcd","Action":"\u64cd\u4f5c","Warning: the link has been inserted but may have errors. Please test it.":"\u8b66\u544a\uff1a\u6b64\u94fe\u63a5\u5df2\u88ab\u63d2\u5165\u4f46\u53ef\u80fd\u542b\u6709\u9519\u8bef\uff0c\u8bf7\u6d4b\u8bd5\u3002","To move focus to other buttons use Tab or the arrow keys. To return focus to the editor press Escape or use one of the buttons.":"\u8981\u79fb\u52a8\u7126\u70b9\u5230\u5176\u4ed6\u6309\u94ae\uff0c\u8bf7\u4f7f\u7528 Tab \u6216\u7bad\u5934\u952e\uff1b\u8981\u5c06\u7126\u70b9\u79fb\u56de\u7f16\u8f91\u5668\uff0c\u8bf7\u6309 Esc \u6216\u4f7f\u7528\u4efb\u610f\u4e00\u4e2a\u6309\u94ae\u3002","When starting a new paragraph with one of these formatting shortcuts followed by a space, the formatting will be applied automatically. Press Backspace or Escape to undo.":"\u5f53\u4f7f\u7528\u8fd9\u4e9b\u683c\u5f0f\u5feb\u6377\u952e\u540e\u8ddf\u7a7a\u683c\u6765\u521b\u5efa\u65b0\u6bb5\u843d\u65f6\uff0c\u8fd9\u4e9b\u683c\u5f0f\u4f1a\u88ab\u81ea\u52a8\u5e94\u7528\u3002\u6309\u9000\u683c\u6216\u9000\u51fa\u952e\u6765\u64a4\u9500\u3002","The following formatting shortcuts are replaced when pressing Enter. Press Escape or the Undo button to undo.":"\u4ee5\u4e0b\u683c\u5f0f\u6377\u5f84\u5728\u6309\u56de\u8f66\u952e\u65f6\u88ab\u66ff\u6362\u3002\u8bf7\u6309\u9000\u51fa\u6216\u64a4\u9500\u952e\u6765\u64a4\u9500\u3002","The next group of formatting shortcuts are applied as you type or when you insert them around plain text in the same paragraph. Press Escape or the Undo button to undo.":"\u4ee5\u4e0b\u7684\u683c\u5f0f\u6377\u5f84\u5c06\u4f1a\u5728\u60a8\u6253\u5b57\u6216\u5c06\u5b83\u4eec\u63d2\u5165\u540c\u4e00\u6bb5\u843d\u79cd\u7684\u7eaf\u6587\u672c\u5468\u56f4\u65f6\u88ab\u81ea\u52a8\u5e94\u7528\u3002\u6309 Esc \u6216\u64a4\u9500\u6309\u94ae\u6765\u64a4\u9500\u3002"}); tinymce.ScriptLoader.markDone( 'https://www.88531.cn/wp-includes/js/tinymce/langs/zh.js' ); </script> <script type="text/javascript"> var ajaxurl = "/wp-admin/admin-ajax.php"; ( function() { var initialized = []; var initialize = function() { var init, id, inPostbox, $wrap; var readyState = document.readyState; if ( readyState !== 'complete' && readyState !== 'interactive' ) { return; } for ( id in tinyMCEPreInit.mceInit ) { if ( initialized.indexOf( id ) > -1 ) { continue; } init = tinyMCEPreInit.mceInit[id]; $wrap = tinymce.$( '#wp-' + id + '-wrap' ); inPostbox = $wrap.parents( '.postbox' ).length > 0; if ( ! init.wp_skip_init && ( $wrap.hasClass( 'tmce-active' ) || ! tinyMCEPreInit.qtInit.hasOwnProperty( id ) ) && ( readyState === 'complete' || ( ! inPostbox && readyState === 'interactive' ) ) ) { tinymce.init( init ); initialized.push( id ); if ( ! window.wpActiveEditor ) { window.wpActiveEditor = id; } } } } if ( typeof tinymce !== 'undefined' ) { if ( tinymce.Env.ie && tinymce.Env.ie < 11 ) { tinymce.$( '.wp-editor-wrap ' ).removeClass( 'tmce-active' ).addClass( 'html-active' ); } else { if ( document.readyState === 'complete' ) { initialize(); } else { document.addEventListener( 'readystatechange', initialize ); } } } if ( typeof quicktags !== 'undefined' ) { for ( id in tinyMCEPreInit.qtInit ) { quicktags( tinyMCEPreInit.qtInit[id] ); if ( ! window.wpActiveEditor ) { window.wpActiveEditor = id; } } } }()); </script> <div id="wp-link-backdrop" style="display: none"></div> <div id="wp-link-wrap" class="wp-core-ui" style="display: none" role="dialog" aria-modal="true" aria-labelledby="link-modal-title"> <form id="wp-link" tabindex="-1"> <input type="hidden" id="_ajax_linking_nonce" name="_ajax_linking_nonce" value="08c7e8c659" /> <h1 id="link-modal-title">插入或编辑链接</h1> <button type="button" id="wp-link-close"><span class="screen-reader-text"> 关闭 </span></button> <div id="link-selector"> <div id="link-options"> <p class="howto" id="wplink-enter-url">输入目标 URL</p> <div> <label><span>网址</span> <input id="wp-link-url" type="text" aria-describedby="wplink-enter-url" /></label> </div> <div class="wp-link-text-field"> <label><span>链接文字</span> <input id="wp-link-text" type="text" /></label> </div> <div class="link-target"> <label><span></span> <input type="checkbox" id="wp-link-target" /> 在新标签页中打开链接</label> </div> </div> <p class="howto" id="wplink-link-existing-content">或链接到站点中的内容</p> <div id="search-panel"> <div class="link-search-wrapper"> <label> <span class="search-label">搜索</span> <input type="search" id="wp-link-search" class="link-search-field" autocomplete="off" aria-describedby="wplink-link-existing-content" /> <span class="spinner"></span> </label> </div> <div id="search-results" class="query-results" tabindex="0"> <ul></ul> <div class="river-waiting"> <span class="spinner"></span> </div> </div> <div id="most-recent-results" class="query-results" tabindex="0"> <div class="query-notice" id="query-notice-message"> <em class="query-notice-default">未指定搜索条件。自动显示最近发布条目。</em> <em class="query-notice-hint screen-reader-text"> 搜索或使用上下方向键来选择一项。 </em> </div> <ul></ul> <div class="river-waiting"> <span class="spinner"></span> </div> </div> </div> </div> <div class="submitbox"> <div id="wp-link-cancel"> <button type="button" class="button">取消</button> </div> <div id="wp-link-update"> <input type="submit" value="添加链接" class="button button-primary" id="wp-link-submit" name="wp-link-submit"> </div> </div> </form> </div> </body> </html>