Forum |  HardWare.fr | News | Articles | PC | S'identifier | S'inscrire | Shop Recherche
3887 connectés 

 


 Mot :   Pseudo :  
  Aller à la page :
 
 Page :   1  2  3  4  5  ..  164  165  166  ..  327  328  329  330  331  332
Auteur Sujet :

BlaBlaTech@JAVA [ELITE, viendez les boobs]

n°1468009
kadreg
profil: Utilisateur
Posté le 31-10-2006 à 10:45:22  profilanswer
 

Reprise du message précédent :
il y a une tache touch qui traine, ça devrait le faire :o


---------------
brisez les rêves des gens, il en restera toujours quelque chose...  -- laissez moi troller sur discu !
mood
Publicité
Posté le 31-10-2006 à 10:45:22  profilanswer
 

n°1468011
nraynaud
lol
Posté le 31-10-2006 à 10:46:15  profilanswer
 

:/
 
J'ai le code de apt, j'aimerai castrer la vérification des timestamps plutôt :/


---------------
trainoo.com, c'est fini
n°1468022
gizmo
Posté le 31-10-2006 à 10:57:04  profilanswer
 

brisssou a écrit :

bha, tu viens pas de dire que ton Tag n'acceptait pas de scriptlet dans son body ? change sa déclaration. et pis fais la voir s'te déclaration (tld)


Euh, oui, mais bon, a priori, dans les valeur possible pour body-content, y a que empty, scriptless et tagdependant, et seul scriptless permet de  mettre des tags au sein du body.
 
Et sinon, y a pas de tld, ce n'est qu'un bete fichier ".tag", le tld n'etant pas, il me semble, obligatoire dans ce cas.

n°1468042
brisssou
8-/
Posté le 31-10-2006 à 11:09:32  profilanswer
 

alors là, ça sort de mes compétences. Je connais pas ce fichier .tag. Dans le tld, il me semble qu'on peut mettre body-content = JSP, ou un truc du style...


---------------
HFR - Mes sujets pour Chrome - Firefox - vérifie les nouveaux posts des topics suivis/favoris
n°1468058
gizmo
Posté le 31-10-2006 à 11:25:01  profilanswer
 

yep, et apparament, c'est l'equivalent de la valeur "scriptless" quand tu fais un tag en pur jsp.
 
En fait, je me base sur cette page: http://java.sun.com/products/jsp/s [...] .html#8780
et sur une serie de pages comme celle-ci http://www.builderau.com.au/progra [...] 342,00.htm qui indiquent qu'on ne peut pas mettre de java dans le doBody d'un tag.

n°1468065
brisssou
8-/
Posté le 31-10-2006 à 11:27:47  profilanswer
 

mouai... ben JSP 1.2, c'est cool


---------------
HFR - Mes sujets pour Chrome - Firefox - vérifie les nouveaux posts des topics suivis/favoris
n°1468165
gizmo
Posté le 31-10-2006 à 13:48:48  profilanswer
 

Bon, ben j'ai compris. Ca a encore ete programme avec les genoux. Alors, effectivement, on ne peut pas mettre de scriptlet au sein d'un "<jsp:doBody/>" ... SAUF si c'est dans la declaration d'un autre tag.
 
Donc

Code :
  1. <custom:myTag>
  2.   Hello <%= "world" %>
  3. </custom:myTag>


Plante comme une merde, tandis que

Code :
  1. <custom:myTag>
  2.   <custom:myPrintTag text="Hello <%= "world" %>" />
  3. </custom:myTag>


Passe comme une fleur.
 
On appreciera l'esprit retord des programmeurs de Sun qui m'ont fait perdre 1/2 sur cette connerie. [:pingouino]


Message édité par gizmo le 31-10-2006 à 13:49:02
n°1469003
uriel
blood pt.2
Posté le 02-11-2006 à 09:24:07  profilanswer
 

Code :
  1. package gcd;
  2. import _42util.*;
  3. import javax.swing.*;
  4. import jawa.awt.event.ActionEvent;
  5.  
  6. public class Gcd extends Dual{
  7.     
  8.     InputField N1,N2;
  9.     Console disp;
  10.     JButton button; // the elements for the GUI
  11.     
  12.     public static void main(String[] args){
  13.       (new Gcd()).main();  
  14.     }
  15.     
  16.     protected void main() {
  17.     
  18.         disp = new Console(10,20);
  19.         mainPane.add("East", disp.getPanel());
  20.     
  21.         for (int n=0; n < 3; n++) cp[n] = new JPanel();
  22.         N1 = new InputField("N1",6,"117182",cp[0]);
  23.         N2 = new InputField("N1",6,"182117",cp[1]);
  24.     
  25.         button = new JButton("gcd" );
  26.         cp[2].add(button);
  27.         button.addActionListener(this);
  28.         mainPane.add("West",Misc.stackPanels(cp));
  29.         show("Gcd version 1.0","Show Gcd window" );
  30.     }
  31.     
  32.     public void actionPerformed(ActionEvent event) {
  33.     
  34.         super.actionPerformed(event);
  35.         if (event.getSource() = button) {
  36.             int n1=N1.readInt(1,1000000);
  37.             int n2=N2.readInt(1,1000000);
  38.             int lo,hi,rem;
  39.             
  40.             int gcd(hi,lo) {    
  41.                 
  42.                 if (n1 < n2) {
  43.                     lo=n1;
  44.                     hi=n2;
  45.                 } else {
  46.                     lo=n2;
  47.                     hi=n1;
  48.                 }
  49.                 
  50.                 int rem = hi%lo;
  51.     
  52.                 if (rem == 0) {
  53.                     return lo;
  54.                 } else {
  55.                     return gcd(lo, rem);
  56.                 }
  57.             
  58.             }    
  59.         }
  60.             
  61.     }
  62.  
  63. }


 
 un etudiant qui me demande pourquoi ça fonctionne pas:
 
xanadu:~/Desktop $ javac Gcd.java  
Gcd.java:40: ';' expected
                        int gcd(hi,lo) {
                               ^
1 error
 
 
je sais pas [:le kneu]


---------------
IVG en france
n°1469004
kadreg
profil: Utilisateur
Posté le 02-11-2006 à 09:25:54  profilanswer
 

regarde le nom du package ma co_uille :o


---------------
brisez les rêves des gens, il en restera toujours quelque chose...  -- laissez moi troller sur discu !
n°1469006
uriel
blood pt.2
Posté le 02-11-2006 à 09:31:12  profilanswer
 

donc c'est un truc evident qui m'echappe [:paysan]


---------------
IVG en france
mood
Publicité
Posté le 02-11-2006 à 09:31:12  profilanswer
 

n°1469008
uriel
blood pt.2
Posté le 02-11-2006 à 09:32:21  profilanswer
 

[:ciler] quel con.... evidemment
 
edit: ha non.


Message édité par uriel le 02-11-2006 à 09:33:49

---------------
IVG en france
n°1469009
nraynaud
lol
Posté le 02-11-2006 à 09:32:26  profilanswer
 

heu, le monsieur il a essayé de définir une méthode gcd() alors qu'il était déjà dans le corps du if ? il se croit en langage fonctionnel ? [:le kneu]


---------------
trainoo.com, c'est fini
n°1469018
uriel
blood pt.2
Posté le 02-11-2006 à 09:39:29  profilanswer
 

p'tain je comprends toujours pas [:pingouino]


---------------
IVG en france
n°1469019
kadreg
profil: Utilisateur
Posté le 02-11-2006 à 09:40:37  profilanswer
 

nraynaud a écrit :

heu, le monsieur il a essayé de définir une méthode gcd() alors qu'il était déjà dans le corps du if ? il se croit en langage fonctionnel ? [:le kneu]


 
[:wam]


---------------
brisez les rêves des gens, il en restera toujours quelque chose...  -- laissez moi troller sur discu !
n°1469067
masklinn
í dag viðrar vel til loftárása
Posté le 02-11-2006 à 10:21:11  profilanswer
 

uriel a écrit :

p'tain je comprends toujours pas [:pingouino]


Java ne permet pas de définir une fonction à l'intérieur d'une fonction (les fonctions en java n'étant pas des "objets de première classe).
 
Ici, il tente de créer une fonction "gcd" au milieu de la méthode "actionPerformed", ce qui est impossible.
 
Si il veut faire des trucs comme ça, faut qu'il utilise e.g., Nice (il me semble que Nice gère les fonctions comme objet de première classe) (pas sur néamoins)

Message cité 1 fois
Message édité par masklinn le 02-11-2006 à 10:22:01

---------------
I mean, true, a cancer will probably destroy its host organism. But what about the cells whose mutations allow them to think outside the box by throwing away the limits imposed by overbearing genetic regulations? Isn't that a good thing?
n°1469075
gizmo
Posté le 02-11-2006 à 10:27:46  profilanswer
 

Ouais, Nice le fait, mais autant qu'il utilise Scala, c'est plus approprie dans ce cas :o

n°1469086
masklinn
í dag viðrar vel til loftárása
Posté le 02-11-2006 à 10:38:01  profilanswer
 

gizmo a écrit :

Ouais, Nice le fait, mais autant qu'il utilise Scala, c'est plus approprie dans ce cas :o


Scala tourne pas dans la JVM si?


---------------
I mean, true, a cancer will probably destroy its host organism. But what about the cells whose mutations allow them to think outside the box by throwing away the limits imposed by overbearing genetic regulations? Isn't that a good thing?
n°1469108
gizmo
Posté le 02-11-2006 à 11:02:01  profilanswer
 

si si :o

n°1469115
lorill
Posté le 02-11-2006 à 11:11:53  profilanswer
 

Dans une appli que je reprends, j'ai fréquemment des erreurs "java.lang.OutOfMemoryError: Java heap space".
 
Y'a quoi comme outil qui peut me permettre de voir quels sont les objets qui sont encore en vie ?

n°1469127
uriel
blood pt.2
Posté le 02-11-2006 à 11:21:59  profilanswer
 

masklinn a écrit :

Java ne permet pas de définir une fonction à l'intérieur d'une fonction (les fonctions en java n'étant pas des "objets de première classe).
Ici, il tente de créer une fonction "gcd" au milieu de la méthode "actionPerformed", ce qui est impossible.


:jap: merci zatous pour les eclaircissements.


---------------
IVG en france
n°1469129
nraynaud
lol
Posté le 02-11-2006 à 11:23:36  profilanswer
 

je sais pas trop, commence par soupçonner les tableaux, voire les tableaux de char.
 
avec une ReferenceQueue et des PhantomReference, dès qu'il n'y a plus de références sur l'objet, il arrive dans la queue.


---------------
trainoo.com, c'est fini
n°1469133
lorill
Posté le 02-11-2006 à 11:24:53  profilanswer
 

ouais mais nan, la c'est un assez gros soft, donc je voulais savoir si y'avait pas des outils pour m'aider un peu.
 
je soupconne que ce sont carrément mes images qui ne sont pas garbagées (c'est un visualisateur d'images médicales)

n°1469134
nraynaud
lol
Posté le 02-11-2006 à 11:26:34  profilanswer
 

ben fous tes images dans la queue


---------------
trainoo.com, c'est fini
n°1469150
gizmo
Posté le 02-11-2006 à 11:39:05  profilanswer
 

Il me semble que JProfiler permet de voir ce genre de chose aussi, mais je ne l'ai plus a disposition pour tester.

n°1469154
masklinn
í dag viðrar vel til loftárása
Posté le 02-11-2006 à 11:42:40  profilanswer
 

lorill a écrit :

Dans une appli que je reprends, j'ai fréquemment des erreurs "java.lang.OutOfMemoryError: Java heap space".
 
Y'a quoi comme outil qui peut me permettre de voir quels sont les objets qui sont encore en vie ?


JProfiler a un memory profiler pas mal :jap:


---------------
I mean, true, a cancer will probably destroy its host organism. But what about the cells whose mutations allow them to think outside the box by throwing away the limits imposed by overbearing genetic regulations? Isn't that a good thing?
n°1469689
the real m​oins moins
Posté le 03-11-2006 à 00:24:59  profilanswer
 

Code :
  1. /**
  2.      * A java.util.Properties where iteration order is guaranteed (insertion order),
  3.      * while keeping the benefits of the load() and store() methods.
  4.      * <strong>Not all methods are overridden, so this might not be reusable in every scenario.</strong>
  5.      */
  6.     public final class SortedProperties<K,V> extends Properties {
  7.         private final LinkedHashMap map;
  8.         public SortedProperties() {
  9.             super();
  10.             map = new LinkedHashMap<K,V>();
  11.         }
  12.         public Object put(Object key, Object value) {
  13.             return map.put(key,value);
  14.         }
  15.         public Object get(Object key) {
  16.             return map.get(key);
  17.         }
  18.         public Enumeration<Object> keys() {
  19.             return Collections.enumeration(map.keySet());
  20.         }
  21.     }

Il est minuit 30, mais je veux pouvoir écrire des tests fiables quand même [:toto_777]

n°1469691
the real m​oins moins
Posté le 03-11-2006 à 00:26:45  profilanswer
 

(et oui, le truc generics est foirax, il voulait pas overrider put proprement le saguoin)


Message édité par the real moins moins le 03-11-2006 à 00:27:41
n°1469692
the real m​oins moins
Posté le 03-11-2006 à 00:29:04  profilanswer
 

class Properties extends Hashtable<Object,Object> {
 
ha bah d'accord :o

n°1469694
the real m​oins moins
Posté le 03-11-2006 à 00:53:23  profilanswer
 

INFO: Illegal access: this web application instance has been stopped already (the eventual following stack trace is caused by an error thrown for debugging purposes as well as to attempt to terminate the thread which caused the illegal access, and has no functional impact)
ERROR  com.opensymphony.webwork.dispatcher.DispatcherUtils DispatcherUtils.java(serviceAction:237) 03.11.2006 00:51:56  Could not execute action
java.lang.reflect.InvocationTargetException
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:585)
        at com.opensymphony.xwork.DefaultActionInvocation.invokeAction(DefaultActionInvocation.java:364)
        at com.opensymphony.xwork.DefaultActionInvocation.invokeActionOnly(DefaultActionInvocation.java:216)
        at com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:190)
        at com.opensymphony.xwork.interceptor.DefaultWorkflowInterceptor.doIntercept(DefaultWorkflowInterceptor.java:168)
        at com.opensymphony.xwork.interceptor.MethodFilterInterceptor.intercept(MethodFilterInterceptor.java:86)
        at com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:188)
        at com.opensymphony.xwork.validator.ValidationInterceptor.doIntercept(ValidationInterceptor.java:115)
        at com.opensymphony.xwork.interceptor.MethodFilterInterceptor.intercept(MethodFilterInterceptor.java:86)
        at com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:188)
        at com.opensymphony.xwork.interceptor.AroundInterceptor.intercept(AroundInterceptor.java:31)
        at com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:188)
        at com.opensymphony.xwork.interceptor.AroundInterceptor.intercept(AroundInterceptor.java:31)
        at com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:188)
        at com.opensymphony.xwork.interceptor.AroundInterceptor.intercept(AroundInterceptor.java:31)
        at com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:188)
        at com.opensymphony.webwork.interceptor.FileUploadInterceptor.intercept(FileUploadInterceptor.java:171)
        at com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:188)
        at com.opensymphony.xwork.interceptor.AroundInterceptor.intercept(AroundInterceptor.java:31)
        at com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:188)
        at com.opensymphony.webwork.interceptor.debugging.DebuggingInterceptor.intercept(DebuggingInterceptor.java:147)
        at com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:188)
        at com.opensymphony.xwork.interceptor.AroundInterceptor.intercept(AroundInterceptor.java:31)
        at com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:188)
        at com.opensymphony.xwork.interceptor.I18nInterceptor.intercept(I18nInterceptor.java:151)
        at com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:188)
        at com.opensymphony.xwork.interceptor.AroundInterceptor.intercept(AroundInterceptor.java:31)
        at com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:188)
        at com.opensymphony.xwork.interceptor.AroundInterceptor.intercept(AroundInterceptor.java:31)
        at com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:188)
        at com.opensymphony.xwork.interceptor.AroundInterceptor.intercept(AroundInterceptor.java:31)
        at com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:188)
        at com.opensymphony.xwork.interceptor.ExceptionMappingInterceptor.intercept(ExceptionMappingInterceptor.java:186)
        at com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:188)
        at com.opensymphony.xwork.interceptor.AroundInterceptor.intercept(AroundInterceptor.java:31)
        at com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:188)
        at com.opensymphony.xwork.DefaultActionProxy.execute(DefaultActionProxy.java:113)
        at com.opensymphony.webwork.dispatcher.DispatcherUtils.serviceAction(DispatcherUtils.java:225)
        at com.opensymphony.webwork.dispatcher.FilterDispatcher.doFilter(FilterDispatcher.java:202)
        at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:186)
        at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
        at com.opensymphony.webwork.dispatcher.ActionContextCleanUp.doFilter(ActionContextCleanUp.java:88)
        at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:186)
        at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
        at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:214)
        at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
        at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
        at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:198)
        at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:152)
        at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
        at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
        at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:137)
        at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
        at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:118)
        at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
        at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
        at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
        at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
        at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
        at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:929)
        at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:160)
        at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799)
        at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
        at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577)
        at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
        at java.lang.Thread.run(Thread.java:613)
Caused by: java.lang.ThreadDeath
        at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1229)
        at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1189)
        at java.security.Provider$Service.getImplClass(Provider.java:1172)
        at java.security.Provider$Service.newInstance(Provider.java:1129)
        at sun.security.jca.GetInstance.getInstance(GetInstance.java:220)
        at sun.security.jca.GetInstance.getInstance(GetInstance.java:190)
        at java.security.Signature.getInstance(Signature.java:332)
        at org.bouncycastle.openpgp.PGPSignature.<init>(PGPSignature.java:65)
        at org.bouncycastle.openpgp.PGPSecretKeyRing.<init>(PGPSecretKeyRing.java:143)
        at org.bouncycastle.openpgp.PGPObjectFactory.nextObject(PGPObjectFactory.java:69)
        at org.bouncycastle.openpgp.PGPSecretKeyRingCollection.<init>(PGPSecretKeyRingCollection.java:35)


 
hmmm, la nuit s'annonce fort bonne.ß

n°1469743
gizmo
Posté le 03-11-2006 à 09:44:55  profilanswer
 

'Tain mais jboss, c'est un serveur en carton [:wam] Je me demandais pourquoi un projet que je deployais chez moi fonctionnais et pas chez mon voisin. Resultat, j'avais deux projets deployes, l'actuel et un ancien, et j'avais oublie d'inclure un fichier properties dans le nouveau. Et bien cette crasse, au lieu de gueuler, il allait dans l'autre projet pour recuperer le fichier qu'il ne trouvait pas [:mlc]
Heureusement qu'on ne met pas des informations critiques dans les properties [:pingouino]

n°1469935
brisssou
8-/
Posté le 03-11-2006 à 13:22:33  profilanswer
 

Code :
  1. getConnection(nbapperrors > 0 ? true : false);


 
et on a payé pour ça... quand j'pense que c'est moi le débutant...


---------------
HFR - Mes sujets pour Chrome - Firefox - vérifie les nouveaux posts des topics suivis/favoris
n°1469999
boulax
Inserer phrase hype en anglais
Posté le 03-11-2006 à 14:08:53  profilanswer
 

?


---------------
Posté depuis des chiottes, sales. Me gusta.
n°1470007
lorill
Posté le 03-11-2006 à 14:11:56  profilanswer
 

!

n°1470013
boulax
Inserer phrase hype en anglais
Posté le 03-11-2006 à 14:15:06  profilanswer
 

ah ouais, lol!


---------------
Posté depuis des chiottes, sales. Me gusta.
n°1470194
the real m​oins moins
Posté le 03-11-2006 à 15:50:54  profilanswer
 


    private static final String TS = "^[A-Za-z]{3} [A-Za-z]{3} [0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2} (CET|CEST) 200[5-6]{1}.*";


OUATDEFUQUE POURAUOI CA éATCHE PAS6666
Mon Oct 16 14:00:43 CEST 2006::1160999853623::2006_189::save::MOD::ezu::__mandatory_data_ok__::'false'::'true'

n°1470197
benou
Posté le 03-11-2006 à 15:53:07  profilanswer
 

tiens, je croyais que t'avais déserté les lieux ...

n°1470200
the real m​oins moins
Posté le 03-11-2006 à 15:53:43  profilanswer
 

ha ?

n°1470204
Chaos Inte​stinal
Posté le 03-11-2006 à 15:56:10  profilanswer
 

the real moins moins a écrit :


    private static final String TS = "^[A-Za-z]{3} [A-Za-z]{3} [0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2} (CET|CEST) 200[5-6]{1}.*";


OUATDEFUQUE POURAUOI CA éATCHE PAS6666
Mon Oct 16 14:00:43 CEST 2006::1160999853623::2006_189::save::MOD::ezu::__mandatory_data_ok__::'false'::'true'


 
http://www.fileformat.info/tool/regex.htm
J'ai testé là.
Ca match [:pingouino]

n°1470207
the real m​oins moins
Posté le 03-11-2006 à 15:57:42  profilanswer
 

un doute masaï

n°1470209
the real m​oins moins
Posté le 03-11-2006 à 15:58:08  profilanswer
 

et ca ca matche?
Mon Jan 09 11:11:07 CET 2006::2006_6::save::MOD::ezu::__current_user_name__::'mireille'::'matthieu'


Message édité par the real moins moins le 03-11-2006 à 15:58:24
n°1470212
the real m​oins moins
Posté le 03-11-2006 à 15:59:31  profilanswer
 

euh chez moi aucune des deux ne matche dans ton site la.. sans flags..?

mood
Publicité
Posté le   profilanswer
 

 Page :   1  2  3  4  5  ..  164  165  166  ..  327  328  329  330  331  332

Aller à :
Ajouter une réponse
 

Sujets relatifs
[java]Ouvrir un fichier dans la fenetre principaleformation pour developpeurs Java
crontab : programme java[JAVA] Aide pour packager un jar
[java] copie de fichier et progressbarinstallation java
[JAVA]Comment insérer un texte dans un fichier audio?[JAVA] Intégrer ANT : API ou ligne de commande ?
[Java][Bouley]Serializable : mauvaise instanciation des champs[JAVA : JNI] Pb a l'execution avec library
Plus de sujets relatifs à : BlaBlaTech@JAVA [ELITE, viendez les boobs]


Copyright © 1997-2025 Groupe LDLC (Signaler un contenu illicite / Données personnelles)