2014年3月31日

[JAVA] 解決下載檔案中文檔名顯示異常

方法1
String fileName = new String(fileName.getBytes(), "ISO8859-1");  
response.setHeader("Content-Disposition", "attachment;filename=" + fileName);



方法2(ie11後失效==)
//判對MSIE 使用URLEncoder.encode()  Firefox 使用BCodec.encode()
if (request.getHeader("User-Agent").indexOf("MSIE") != -1) {
    response.setHeader("Content-Disposition",
"" + openType + "; filename=\"" + URLEncoder.encode(filename, "UTF-8") + "\"");
} else {
    try {
        response.setHeader("Content-Disposition",
    "" + openType + "; filename=\"" + new BCodec().encode(filename, "UTF-8") + "\"");
    } catch (EncoderException ex) {
        ex.printStackTrace();
    }

2014年3月27日

[Word] 修改註解底色

【校閱】→【追蹤修訂】→【變更追蹤選項】

【標記】的【註解】

2014年3月19日

How do I type out a long dash using the keyboard?

有時候會看到文件有比較長的dash '—' 不是 '-'

要怎麼打出咧

在word 「可能」打兩個--後再空白即可

如果不行的話:

PC上 按住alt 打 0151(一定要用右鍵數字鍵盤打)(0150 會打出 – hyphen)
MAC上按住shift 打-

HTML的話是&#8212

ps —叫做em dash  -叫做en dash  –叫做hyphen.......

Evernote 搜尋語法

電腦玩物: Evernote 搜尋語法十大進階技巧教學:活用搜尋不只是找筆記

「 any: 」後面任一關鍵字
any:東京 京都 香港

「 intitle:」只搜尋標題(可用'-'排除)

「 created:」某時間建立(可以是區間)
created:20120101 -created:20121231
created:day-1
created:week-1

「reminderDoneTime:」某時間已完成的提醒事項
reminderDoneTime:day-7

「todo:」搜尋核取方塊狀態
todo:false
todo:true

「resource:」找出檔案類型
resource:audio/*
resource:application/pdf 東京迪士尼
resource:application/msword

「source:」
source:mail.clip
source:web.clip
source:mobile.ios
source:mobile.android
source:mobile.*

2014年3月13日

ORA-28001: the password has expired

1.先看user的profile是什麼

SQL> SELECT username,PROFILE FROM dba_users;

查到是DEFAULT後

2.查看密碼期限

SQL> SELECT * FROM dba_profiles WHERE profile='DEFAULT' AND resource_name='PASSWORD_LIFE_TIME';

3.改成UNLIMITED

SQL> ALTER PROFILE DEFAULT LIMIT PASSWORD_LIFE_TIME UNLIMITED;

4.再幫user改密碼
SQL> alter user  使用者 identified by 密碼;

可以再用密碼連了