搜索到与相关的文章
编程技术

吉林化纤(000420)预计前9月实现净利润近1亿元

WWW.CNLIST.COM王丹瑾时间:2007/10/0818:54:00中国证券网今天你“论股”了么?掌握持仓个股全方位资讯--就用"搜股易"查看吉林化纤(000420)的基本资料查看吉林化纤(000420)的新股发行资料10月8日讯吉林化纤(000420)发布业绩预告,得益于产品价格的持续攀升,公司今年前三季度业绩将同比大幅增长,预计公司2007年1-9月份累计净利润9000万元至1亿元。上年同期实现净利润为5万元。吉林化纤(000420)今日收高3

系统 2019-08-29 23:12:14 2593

编程技术

Factory Method Design Pattern工厂方法模式

packagefactoryMethod;publicinterfaceMobile{publicvoidcall();}publicclassMotorolaimplementsMobile{publicvoidcall(){System.out.println("Motorolaproduced");}}publicclassNokiaimplementsMobile{publicvoidcall(){System.out.println("Nokia

系统 2019-08-29 22:18:24 2593

编程技术

解决TextView排版自动换行问题

justified实现Textview和Edittext文字左右对齐https://github.com/programingjd/justifiedhttp://blog.sina.com.cn/s/blog_73615d370100zpt5.html今天忽然发现android项目中的文字排版参差不齐的情况非常严重,不得不想办法解决一下。经过研究之后,终于找到了textview自动换行导致混乱的原因了----半角字符与全角字符混乱所致!一般情况下,我们输

系统 2019-08-29 22:18:03 2593

Android

新浪微博Android客户端学习记录四:完成OAuth认

本课主要讲解了在Android中如何完成用户OAuth认证。微博操作的流程图:点击了开始后:首先是获取新浪微博的OAuth授权(WebViewActivity.java):packagehaiyang.project.iweibo.ui;importhaiyang.project.iweibo.R;importhaiyang.project.iweibo.util.AuthUtil;importhaiyang.project.iweibo.util.Jav

系统 2019-08-12 09:29:47 2593

数据库相关

[leetcode]Palindrome Partitioning

Givenastrings,partitionssuchthateverysubstringofthepartitionisapalindrome.Returnallpossiblepalindromepartitioningofs.Forexample,givens="aab",Return[["aa","b"],["a","a","b"]]好久木有写C++,手好生,写了很久。。。1016ms过大集合。。。好像有点慢思路:1.2Ddp求出字符串s的回文情

系统 2019-08-12 01:54:01 2593

MySql

mysql中插入多条记录-微软批处理

当向mysql中插入大量数据时,可以使用微软的批处理方式。这样可以防止内存溢出又提高了效率。我写了一个mysql中插入多条记录的例子。赋值代码可以直接使用。1、首先需要添加两个dllMySql.Data.dll和MySqlBulkCopy.dll2、把MySqlHelper.cs这个类文件加入到项目中(我把代码贴出来,复制后建一个MySqlHelper.cs)MySqlHelper.csusingSystem;usingSystem.Collections

系统 2019-08-12 01:53:43 2593

数据库相关

orcl 删除重复的行

deletefromFOODDETAILtwheret.idin(selectt.idfromFOODDETAILwheret.sendtime>=to_date('2013-08-24','yyyy-mm-ddHH24:mi:ss')groupbyt.idhavingcount(t.id)>1)androwidnotin(selectmin(rowid)fromFOODDETAILwheret.sendtime>=to_date('2013-08-24'

系统 2019-08-12 01:52:58 2593

SqlServer

一个简单的游标删除SQL SERVER表

usedatabaseNamedeclare@tblnamechar(100)declare@sqlchar(5000)declaretable_cursorcursorforselectnamefromsysobjectswherenamelike'tb_card[_]%'andname<>'Tb_card_regist'andname<>'Tb_card_item'andname<>'Tb_card_discrule'andname<>'tb_card

系统 2019-08-12 01:52:52 2593

MySql

安装MySQL

下载zip包进入官网下载页面:http://dev.mysql.com/downloads/mysql/下载mysql-5.6.23-win32.zip:Windows(x86,32-bit),ZIPArchive5.6.23342.3MDownload(mysql-5.6.23-win32.zip)MD5:d55ea458590c92060a790ba22e9b4222|Signature解压zip包解压zip包到E:\develop\database\

系统 2019-08-12 01:52:03 2593

数据库相关

生成查询的模糊匹配字符串.sql

ifexists(select*fromdbo.sysobjectswhereid=object_id(N'[dbo].[f_Sql]')andxtypein(N'FN',N'IF',N'TF'))dropfunction[dbo].[f_Sql]GOifexists(select*fromdbo.sysobjectswhereid=object_id(N'[序数表]')andOBJECTPROPERTY(id,N'IsUserTable')=1)drop

系统 2019-08-12 01:51:37 2593