tanhu

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2021年2月23日

摘要: A查看 1. 进入apktool 工具所在目录 使用 apktool 进行导出 class.dex 文件 。命令如下 1) apktool d 1.apk 2)apktool d -s -f 1.apk 2.执行 d2j-dex2jar.bat classes.dex 编译出 此问家 classes 阅读全文
posted @ 2021-02-23 09:39 tanhu 阅读(138) 评论(0) 推荐(0) 编辑

2020年8月20日

摘要: merge into test_table t1 using (select 'zhangsan' username,'/root/test' path, 'this is test' description from dual) t2 on (t1.path = t2.path) when mat 阅读全文
posted @ 2020-08-20 15:11 tanhu 阅读(304) 评论(0) 推荐(0) 编辑

2019年8月26日

摘要: 像这样的 /* id 年段 班级 1 高一 1班 2 高一 2班 1 高二 1班 2 高二 2班 1 高三 1班 2 高三 2班 SELECT 年级, 班级, dense_rank() OVER ( partition BY 年级 ORDER BY 班级 ) AS 班级序号 table SELECT 阅读全文
posted @ 2019-08-26 16:15 tanhu 阅读(1280) 评论(0) 推荐(0) 编辑

2019年8月7日

摘要: CREATE OR REPLACE FUNCTION Fun_getbirthDayfromIdntity (Idntity IN VARCHAR2) --定义入参/*根据身份证号获取出生日期*/RETURN DATE ISbirthday DATE;--定义返回值 bx_exception EXC 阅读全文
posted @ 2019-08-07 17:46 tanhu 阅读(1078) 评论(0) 推荐(0) 编辑

2018年9月14日

摘要: public class SoapWebService { /// <summary> /// webService 地址 /// </summary> private string url = ""; public SoapWebService() { this.url =ReadPrivateP 阅读全文
posted @ 2018-09-14 16:08 tanhu 阅读(803) 评论(0) 推荐(0) 编辑

2018年5月24日

摘要: 转载地址https://www.cnblogs.com/haofaner/p/6048017.htmlusing System; using System.Linq; using System.IO; using ICSharpCode.SharpZipLib.Zip; using ICSharpCode.SharpZipLib.Checksums; using System.Diagnosti... 阅读全文
posted @ 2018-05-24 11:39 tanhu 阅读(592) 评论(0) 推荐(0) 编辑

2018年5月16日

摘要: 记得下次开发程序是一定要书写日志,这样可以避免很多错误,可以说清楚不是自己的问题。using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; namespace CACPayLib { public class Log { ... 阅读全文
posted @ 2018-05-16 14:00 tanhu 阅读(216) 评论(0) 推荐(0) 编辑

2018年1月11日

摘要: using System; using System.Collections.Generic; using System.Text; using System.Windows.Forms; using System.Drawing; namespace ChineseCalender { public class myTextBox:TextBox { publ... 阅读全文
posted @ 2018-01-11 17:58 tanhu 阅读(1545) 评论(0) 推荐(0) 编辑

2017年12月26日

摘要: IF EXISTS (SELECT 1 FROM sysobjects WHERE name='pd_invoice_save' AND type ='P') DROP PROC pd_invoice_save go CREATE PROC pd_invoice_save ( ... 阅读全文
posted @ 2017-12-26 14:54 tanhu 阅读(258) 评论(0) 推荐(0) 编辑

2017年12月19日

摘要: 使用之前要注意判断配置文件是否存在,dll 内部不会提示各种错误。 阅读全文
posted @ 2017-12-19 11:45 tanhu 阅读(3930) 评论(0) 推荐(1) 编辑