是否有任何实用程序从Oracle java.text.SimpleDateFormat
格式模式返回to_char
模式?
create or replace type type_sample as object (
f_id number,
f_name varchar2(100),
f_start_date date,
f_end_date date
)
/
SET SERVEROUTPUT ON
DECLARE
xmltype1 SYS.XMLType;
message type_sample;
BEGIN
message := new type_sample(1, 'Manohar', current_date, sysdate);
xmltype1 := XMLtype.createXML(message);
DBMS_OUTPUT.PUT_LINE('out_errm : '|| xmltype1.getStringVal());
END;
/
<TYPE_SAMPLE><F_ID>1</F_ID><F_NAME>Manohar</F_NAME><F_START_DATE>26-JAN-13</F_START_DATE>**<F_END_DATE>26-JAN-13</F_END_DATE>**</TYPE_SAMPLE>
我有上面的XML来自DataBase。这里的日期格式基于运行上述代码的会话以不同的格式出现。
我可以做的是,可以将该会话的dateformat模式从java端获得。如果我可以将dateformat模式(oracle db)转换为java.text.SimpleDateFormat
模式,我的问题就解决了。你能帮帮我吗?
我在这里没有得到预期的答案。可能是我的演讲没有明确解释问题。
我现在会问一个直截了当的问题。据我所知java.text.SimpleDateFormat毕竟是java.text.DateFormat的一个实现。 DateFormat的这种实现可以理解以下模式字母
G Era designator
y Year
M Month in year
w Week in year
W Week in month
D Day in year
d Day in month
F Day of week in month
E Day in week
a Am/pm marker
H Hour in day (0-23)
k Hour in day (1-24)
K Hour in am/pm (0-11)
h Hour in am/pm (1-12)
m Minute in hour
s Second in minute
S Millisecond
z Time zone
Z Time zone
是否有其他java.text.DateFormat实现,可以理解其他一些模式字母组?如果有的话,请告诉我。
答案 0 :(得分:0)
XML的其中一个日期是26-JAN-13。这将是“{dd-MMM-yy”的SimpleDateFormat
SimpleDateFormat oracleFormat = new SimpleDateFormat("dd-MMM-yy");
Date date = oracleFormat.parse(dateString);
答案 1 :(得分:0)
不完全是你问的问题,但这是一种避免会话NLS参数不确定性的不同方法。您可以在对象中进行转换,因此您可以使用显式日期格式掩码,并且在将其转换为XML时它已经是一个字符串:
create or replace type type_sample as object (
f_id number,
f_name varchar2(100),
f_start_date varchar2(10),
f_end_date varchar2(10),
constructor function type_sample(self in out nocopy type_sample,
f_id number, f_name varchar2, f_start_date date, f_end_date date)
return self as result
)
/
create or replace type body type_sample as
constructor function type_sample(self in out nocopy type_sample,
f_id number, f_name varchar2, f_start_date date, f_end_date date)
return self as result is
begin
self.f_id := f_id;
self.f_name := f_name;
self.f_start_date := to_char(f_start_date, 'YYYY-MM-DD');
self.f_end_date := to_char(f_end_date, 'YYYY-MM-DD');
return;
end;
end;
/
创建对象的方式没有变化:
set serveroutput on
declare
xmltype1 sys.xmltype;
message type_sample;
begin
message := new type_sample(1, 'Manohar', current_date, sysdate);
xmltype1 := xmltype.createxml(message);
dbms_output.put_line('out_errm : '|| xmltype1.getStringVal());
end;
/
out_errm : <TYPE_SAMPLE><F_ID>1</F_ID><F_NAME>Manohar</F_NAME><F_START_DATE>2013-02-04</F_START_DATE><F_END_DATE>2013-02-04</F_END_DATE></TYPE_SAMPLE>
无论会话的YYYY-MM-DD
(在此会话中恰好是NLS_DATE_FORMAT
),XML中的日期始终为DD-MON-RR
格式。你可以使用你想要的任何固定格式,你只需要同意对象和Java之间的格式。
(我想我假设这是对象将被用于的唯一内容;否则将日期放入字符串不是一个好主意......)。