码迷,mamicode.com
首页 >  
搜索关键字:word 模板与加载项    ( 17506个结果
OpenGL学习 Introduction
OpenGL and Graphics PipelineThe word pipeline is from production lines in factories.Generating a product at high efficiency and volume generally requi...
分类:其他好文   时间:2014-08-04 14:07:37    阅读次数:368
C# 使用 NPOI 库读写 Excel 文件(转载)
NPOI是开源的POI项目的.NET版,可以用来读写Excel,Word,PPT文件。在处理Excel文件上,NPOI 可以同时兼 容xls 和 xlsx。官网提供了一份Examples,给出了很多应用场景的例子,打包好的二进制文件类库,也仅有几MB,使用非常方便。读取ExcelNPOI使用HSSF...
分类:其他好文   时间:2014-08-04 13:43:57    阅读次数:270
破解交换机密码
交换机密码破解:1、进入特权模式设置一个enable 密码 Switch(config)#enable password 123 2、保存 Switch#copy running-config st...
分类:其他好文   时间:2014-08-04 13:40:17    阅读次数:215
ssh自动输入密码脚本 切换目录脚本
利用expect的,首先查看expect,命令:which expect#!/usr/bin/expect -fspawn ssh 用户名@ip地址expect "assword:"send "password\r"interact自动输入密码,切换目录#!/usr/bin/expect -fspa...
分类:其他好文   时间:2014-08-04 10:37:46    阅读次数:319
asp.net使用MVC4框架基于NPOI做导出数据到Excel表
使用 NPOI 你就可以在没有安装 Office 或者相应环境的机器上对 WORD/EXCEL 文档进行读写。NPOI是构建在POI 3.x版本之上的,它可以在没有安装Office的情况下对Word/Excel文档进行读写操作。使用 NPOI 你就可以在没有安装 Office 或者相应环境的机器上对...
分类:Web程序   时间:2014-08-03 17:44:05    阅读次数:297
leetcode Word Break II
Give two versions of WA code: Version 1: Runtime Error: Find the bug class Solution { public: void find(const string& s, const unordered_set& dict, vector& res) { int i, j, len = s.length(); ...
分类:其他好文   时间:2014-08-03 15:21:27    阅读次数:329
PE文件
RVA 相对于PE文件装入地址的偏移位置,也及 偏移量 虚拟地址(VA) = 基地址(ImageBase) +相对虚拟地址(RVA) 文件偏移地址(File Offset/RAW Offset),从PE文件第一个字节开始,起始值0,十六进制工具打开显示的地址就是。 X86平台一般用4kb(1000h...
分类:其他好文   时间:2014-08-03 14:58:55    阅读次数:270
从cin读入一组词并把它们存入一个vector对象,然后设法把所有词都改写为大写字母。
#include#include#includeusing namespace std;int main(){ string word; vector Str; while(cin>>word) Str.push_back(word); for(auto c:...
分类:其他好文   时间:2014-08-03 12:38:05    阅读次数:223
Reverse Words in a String leetcode java
题目:Given an input string, reverse the string word by word.For example,Given s = "the sky is blue",return "blue is sky the".click to show clarificatio....
分类:编程语言   时间:2014-08-03 10:07:05    阅读次数:231
烂泥:【解决】word复制windows live writer没有图片
本文由51cto.com提供友情赞助,首发于烂泥行天下。在使用windowslivewriter发表博客,博客先是在是word2013中进行编辑,编辑完毕后我会复制到windowslivewriter中,然后发表出去。使用了几年都没有问题,就是最近这个月出现。word复制到livewriter中,只有文字而没有图片。以前..
分类:Windows程序   时间:2014-08-03 07:59:35    阅读次数:292
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!