Detailed explanation of examples of data encryption and decryption in java
This article introduces a simple example code of a jsp file about key query. Friends who need it can refer to it
This is a jsp file about key query, which accepts the data of the superior file and encrypts it. Process, put it into the Map collection, and submit it to the xdoc file through the form form; however, this approach is to meet the company's requirements, and the content of the framework is inevitably cumbersome; the next article will introduce a simple method that does not require too much construction. Common practice in multiple environments.
<br><br><%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> <%@page import="java.io.IOException"%> <%@page import="java.util.ArrayList"%> <%@page import="java.util.List"%> <%@page import="java.util.HashMap"%> <%@page import="java.util.Map"%> <%@page import="java.sql.*"%> <%@page import="java.util.*"%> <%@page import="java.sql.ResultSet"%> <%@page import="combiz.system.IBOSrvUtil"%> <%@page import="combiz.ui.epassmanager.entitys.Base64"%> <%@ include file="xdocserver.jsp" %> <% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; String xdocserver1 = EjbServerName.getValue("xdocserver"); System.out.println("basePath basePath==========================="+basePath); %> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Insert title here</title> </head> <body> <% StringBuffer sb=new StringBuffer(); String part = request.getParameter("szbm"); String str1=new String(part.getBytes("ISO-8859-1"),"GBK"); String sta = request.getParameter("syzt"); String str2=new String(sta.getBytes("ISO-8859-1"),"GBK"); String tems1 = ""; if(str2.equals("正在使用")){ tems1="use"; }else if(str2.equals("暂停使用")){ tems1="pause"; }else if(str2.equals("停止使用")){ tems1="stop"; } else{ tems1="use"; } String s1 = Base64.encodeFixLenString(tems1); String sql=""; List menuList=new ArrayList(); sql =" select t.companyid ,a.laborname ,t.keysn ,t.keystatus from sys_key t "+ " left join IBSUSERS b on b.id = t.id left join labor a on a.labornum = b.labornum where 1=1 "; if(!str1.equals("")){ sql +=" and t.companyid like '%"+str1+"%' "; } if(!s1.equals("")){ sql +=" and t.keystatus = '"+s1+"'"; } try { List list = IBOSrvUtil.getBaseDao().selectListBySql(sql); sb.append("<xdata>"); if(list.size()>0){ for(int i=0;i<list.size();i++){ Map map = (Map) list.get(i); sb.append("<row>"); String keysn=Base64.decodeToFixLenString(map.get("KEYSN")==null?"":map.get("KEYSN").toString()); String laborname=map.get("LABORNAME")==null?"":map.get("LABORNAME").toString(); String companyid=map.get("COMPANYID")==null?"":map.get("COMPANYID").toString(); String temstatus =Base64.decodeToFixLenString(map.get("KEYSTATUS")==null?"":map.get("KEYSTATUS").toString()); Map<String, String> compMap = new HashMap<String, String>(); String status = ""; if(temstatus.equals("use")){ status="正在使用"; }else if(temstatus.equals("pause")){ status="暂停使用"; }else{ status="停止使用"; } sb.append("<col1>").append(keysn).append("</col1>"); sb.append("<col2>").append(laborname).append("</col2>"); sb.append("<col3>").append(companyid).append("</col3>"); sb.append("<col4>").append(status).append("</col4>"); sb.append("</row>"); } } sb.append("</xdata>"); } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); } System.out.println("sb===null=============="+sb); %> <iframe name="xdoc" width="100%" height="100%"></iframe> <form name="form1" action="http://11.1.1.152:8088/xdoc/realty/mycx.xdoc" method="post" target="xdoc" style="display: none"> <input name="data" type="hidden" value="<%=sb.toString()%>" /> </form> </body> <script language="javascript"> document.form1.submit(); </script> <script type="text/javascript"> function dosubmit(){ document.getElementById("btnSub").disabled = true; if(document.getElementById("szbm" ).value!="" || document.getElementById("syzt" ).value!="" ) { var f1 = document.getElementById("b1"); f1.submit(); } else{ alert("请输入查询条件!"); document.getElementById("btnSub").disabled = false; return ; } } //如果这三个条件同时为空的话就弹出提示框。否则执行F1并提交F1.就是得到的B1 </html>
The above is the detailed content of Detailed explanation of examples of data encryption and decryption in java. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Guide to Perfect Number in Java. Here we discuss the Definition, How to check Perfect number in Java?, examples with code implementation.

Guide to Weka in Java. Here we discuss the Introduction, how to use weka java, the type of platform, and advantages with examples.

Guide to Smith Number in Java. Here we discuss the Definition, How to check smith number in Java? example with code implementation.

In this article, we have kept the most asked Java Spring Interview Questions with their detailed answers. So that you can crack the interview.

Java 8 introduces the Stream API, providing a powerful and expressive way to process data collections. However, a common question when using Stream is: How to break or return from a forEach operation? Traditional loops allow for early interruption or return, but Stream's forEach method does not directly support this method. This article will explain the reasons and explore alternative methods for implementing premature termination in Stream processing systems. Further reading: Java Stream API improvements Understand Stream forEach The forEach method is a terminal operation that performs one operation on each element in the Stream. Its design intention is

Guide to TimeStamp to Date in Java. Here we also discuss the introduction and how to convert timestamp to date in java along with examples.

Capsules are three-dimensional geometric figures, composed of a cylinder and a hemisphere at both ends. The volume of the capsule can be calculated by adding the volume of the cylinder and the volume of the hemisphere at both ends. This tutorial will discuss how to calculate the volume of a given capsule in Java using different methods. Capsule volume formula The formula for capsule volume is as follows: Capsule volume = Cylindrical volume Volume Two hemisphere volume in, r: The radius of the hemisphere. h: The height of the cylinder (excluding the hemisphere). Example 1 enter Radius = 5 units Height = 10 units Output Volume = 1570.8 cubic units explain Calculate volume using formula: Volume = π × r2 × h (4

Spring Boot simplifies the creation of robust, scalable, and production-ready Java applications, revolutionizing Java development. Its "convention over configuration" approach, inherent to the Spring ecosystem, minimizes manual setup, allo
